How does underscore "_" work in Python files?
Answers
Answered by
3
The underscore prefix is meant as a hint to another programmer that a variable or method starting with a single underscore is intended for internal use. This convention is defined in PEP 8. This isn't enforced by Python. Python does not have strong distinctions between “private” and “public” variables like Java does.
herin83:
ooh
Similar questions