Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

There is no "library-private" parameter in Python. However, in Python, variables and methods can be marked as private by prefixing them with a double underscore (__). This is called name mangling and is meant to indicate that the variable or method is intended to be used only within the class where it is defined and not by other parts of the code. However, it is not truly private, as it can still be accessed from outside the class by using the mangled name.