Python - The meaning of a single- and a double-underscore before an object name

Today I am going to explain the difference between single- and a double-underscore before an object name

Single Underscore

Variables in a class with a leading underscore are simply to indicate to other programmers that the variable should be private. However, nothing special is done with the variable itself.

Double Underscore (Name Mangling)



From the Python docs:


           
               Any identifier of the form __spam (at least two leading underscores, at most one trailing underscore) is textually replaced with _classname__spam, where classname is the current class name with leading underscore(s) stripped. This mangling is done without regard to the syntactic position of the identifier, so it can be used to define class-private instance and class variables, methods, variables stored in globals, and even variables stored in instances. private to this class on instances of other classes.

And a warning from the same page:


           
               Name mangling is intended to give classes an easy way to define “private” instance variables and methods, without having to worry about instance variables defined by derived classes, or mucking with instance variables by code outside the class. Note that the mangling rules are designed mostly to avoid accidents; it still is possible for a determined soul to access or modify a variable that is considered private.

Example

           
           >>> class MyClass():
           ...     def __init__(self):
           ...             self.__superprivate = "Hello"
           ...             self._semiprivate = ", world!"
           ...
           >>> mc = MyClass()
           >>> print mc.__superprivate
           Traceback (most recent call last):
             File "", line 1, in 
           AttributeError: myClass instance has no attribute '__superprivate'
           >>> print mc._semiprivate
           , world!
           >>> print mc.__dict__
           {'_MyClass__superprivate': 'Hello', '_semiprivate': ', world!'}
           
           

Leave a comment