When in doubt, leave it "public" - I mean, do not add anything to obscure the name of your attribute. If you have a class with some internal value, do not bother about it. Instead of writing:
class Stack(object):
def __init__(self):
self.__storage = [] # Too uptight
def push(self, value):
self.__storage.append(value)
write this by default:
class Stack(object):
def __init__(self):
self.storage = [] # No mangling
def push(self, value):
self.storage.append(value)
This is for sure a controversial way of doing things. Python newbies just hate it and even some old Python guys despise this default - but it is the default anyway, so I really recommend you to follow it, even if you feel uncomfortable.
If you really want to send the message to your users saying "Can't touch this!", the usual way is to precede the variable with one underscore. This is just a convention, but people understand it and take double care when dealing with such stuff:
class Stack(object):
def __init__(self):
self._storage = [] # This is ok but pythonistas use to be relaxed about it
def push(self, value):
self._storage.append(value)
This can be useful, too, for avoiding conflict between properties names and attribute names:
class Person(object):
def __init__(self, name, age):
self.name = name
self._age = age if age >= 0 else 0
@property
def age(self):
return self._age
@age.setter
def age(self, age):
if age >= 0:
self._age = age
else:
self._age = 0
What about the double underscore? Well, it seems the double underscore magic is used mainly to avoid accidental overloading of methods. If you want to use it eventually, you can, but it is nor usual neither recommended.
EDIT: Why is this so? Well, there is a lot of reasons - most of them controversial... Let us see some of them.
Python has properties
Most OO languages today use the opposite approach: what should not be used should not be visible, so attributes should be private. Theoretically, this would yield more manageable, less coupled classes, because no one would change values inside the objects recklessly.
However, this is not so simple. For example, Java classes do have a lot attributes and getters that just get the values and setters that just set the values. You need, let us say, seven lines of code to declare a single attribute - which a Python programmer would say is needless complex. Also, in practice you just write this lot of code to get one public field, since you can change its value using the getters and setters.
So why to follow this private-by-default policy? Just make your attributes public by default. Of course, it is problematic in Java, because if you decide to add some validation to your attribute, it would require you to change all
person.age = age;
in your code to, let us say,
person.setAge(age);
being setAge():
public void setAge(int age) {
if (age >= 0) {
this.age = age;
} else {
this.age = 0;
}
}
So in Java (and other languages) the default is to use getters and setters anyway, because they can be annoying to write but can spare you a lot of time if you find yourself in the situation I've described.
However, you do not need to do it in Python, since Python have properties. If you had this class:
class Person(object):
def __init__(self, name, age):
self.name = name
self.age = age
and then you decide to validate ages, you do not need to change the person.age = age pieces of your code. Just add a property (as shown below)
class Person(object):
def __init__(self, name, age):
self.name = name
self._age = age if age >= 0 else 0
@property
def age(self):
return self._age
@age.setter
def age(self, age):
if age >= 0:
self._age = age
else:
self._age = 0
If you can do it and still use person.age = age, why would you add private fields and getters and setters?
(Also, see Python is not Java and this article about the harms of using getters and setters.).
Everything is visible anyway - and trying to hide just complicates your work
Even in languages where there are private attributes, you can access them through some kind of reflection/introspection library. And people do it a lot of times, in frameworks and for solving urgent needs. The problem is that introspection libraries are just a hard way of doing what you could do with public attributes.
Since Python is a very dynamic language, it is just counterproductive to add this burden to your classes.
The problem is not to be possible to see - is to be required to see
For a Pythonista, encapsulation is not the inability of seeing internals of classes, but the possibility of avoiding to look at it. I mean, encapsulation is the property of a component which allows it to be used without the user being concerned about the internal details. If you can use a component without bothering yourself about its implementation, then it is encapsulated (in the opinion of a Python programmer).
Now, if you wrote your class in such a way you can use it without having to think about implementation details, there is no problem if you want to look inside the class for some reason. The question is: your API should be good and the rest is detail.
Guido said so
Well, this is not controversial: he said so, actually.
This is culture
Yes, there are some reasons, but no killing reason. This is mostly a cultural aspect of programming in Python. Frankly, it could be the other way, too - but it is not. Also, you could just ask the other way around: why do some languages use private attributes by default? For the same main reason for the Python practice: because it is the culture of these languages, and each choice has advantages and disadvantages.
Since this culture grew up, you are well advised to follow it. Otherwise, you will get annoyed by Python programmers saying to you to remove the __ of your code when you asked a question in Stack Overflow :)
I feel my answer is not so good. Sorry, I just planned to answer to the more straightforward question about what is the convention; I just tried to answer about why this is the convention because I have posted the first answer. I hope it can be a bit clarifying, anyway.