In Python, we use double underscore (Or __) before the attributes name and those attributes will not be directly visible outside.
python - Sample - python code :
python tutorial - Output :
2 7 Traceback (most recent call last): File "filename.py", line 13, in print (myObject.__hiddenVariable) AttributeError: MyClass instance has no attribute '__hiddenVariable'
In the above program, we tried to access hidden variable outside the class using object and it threw an exception.
We can access the value of hidden attribute by a tricky syntax:
python - Sample - python code :
python tutorial - Output :
10
Private methods are accessible outside their class, just not easily accessible. Nothing in Python is truly private; internally, the names of private methods and attributes are mangled and unmangled on the fly to make them seem inaccessible by their given names [See this for source ].
Printing objects gives us information about objects we are working with. In C++, we can do this by adding a friend ostream& operator << (ostream&, const Foobar&) method for the class. In Java, we use toString() method. In python this can be achieved by using __repr__ or __str__ methods.
python - Sample - python code :
python tutorial - Output :
From str method of Test: a is 1234,b is 5678 [Test a:1234 b:5678]
Important Points about Printing:
- If no __str__ method is defined, print t (or print str(t)) uses __repr__.
python - Sample - python code :
python tutorial - Output :
Test a:1234 b:5678
- If no __repr__ method is defined then the default is used.
python - Sample - python code :
python tutorial - Output :
<__main__.Test instance at 0x7fa079da6710>