up vote 11 down vote favorite
7
share [g+] share [fb]

I'm coming from the Java world and reading Bruce Eckels' Python 3 patterns idioms.

While reading about classes...it goes on to say that in Python there is no need to declare class variables. You just use them in the constructor...and boom..they are there.

So for example:

class Simple:
        def __init__(self1, str):
                print("inside the simple constructor")
                self1.s = str
        def show(self1):
                print(self1.s)
        def showMsg (self, msg):
                print (msg + ':', self.show())

My question is, if above is the case then any object of class Simple can just change the value of variable s outside of the class. For example:

if __name__ == "__main__":
        x = Simple("constructor argument")
        x.s = "test15" #this changes the value
        x.show()
        x.showMsg("A message")

In Java, we have been taught about public/private/protected variables. Those keywords make sense because at times you want variables in a class to which no one outside the class has access to.

Why is that not required in Python?

link|improve this question

1  
You meant instance variables, not class variables, right? – Paul McGuire Nov 13 '09 at 9:07
You should check properties: docs.python.org/library/functions.html#property. Just use the getter and your variable will be protected. – rubik Jul 17 '11 at 6:05
feedback

6 Answers

up vote 44 down vote accepted

It's cultural. In Python, you don't write to other classes' instance or class variables. In Java, nothing prevents you from doing the same if you really want to - after all, you can always edit the source of the class itself to achieve the same effect. Python drops that pretense of security and encourages programmers to be responsible. In practice, this works very nicely.

If you want to emulate private variables for some reason, you can always use the "__" prefix from PEP 8. Python mangles the names of variables like __foo so that they're not easily visible to code outside the class that contains them (although you can get around it if you're determined enough, just like you can get around Java's protections if you work at it).

By the same convention, the "_" prefix means "stay away even if you're not technically prevented from doing so." You don't play around with another class's variables that look like __foo or _bar.

link|improve this answer
5  
+1 for emphasizing culture – hasen j Oct 29 '09 at 2:05
That makes sense. However, I dont think there is any way in java to access private variables outside the class (except actually changing the source of the class ofcourse). Is there? – Omnipresent Oct 29 '09 at 2:06
Interesting, I come from a PHP background and I'm wondering how this works in practice. Isn't it dangerous for classes to be able to modify what would be private members if the language used was something other than Python? – David Caunt Oct 29 '09 at 2:06
1  
@David - the presumption is that we're all adults here. Don't break things that you can't fix! In this case, that means that you shouldn't mess around with those private members like __foo or _bar. Again, in practice, that's just not done without an extremely good reason. It might not be theoretically pure, but I've never once seen a real-world situation where it was a problem. – Kirk Strauser Oct 29 '09 at 2:12
4  
I tend to prefer the python way, but I don't think the java way is as pointless as you make out. Declaring something private quickly tells someone reading the code something very useful: this field is only ever modified inside this class. – Ned Nov 13 '09 at 9:24
show 4 more comments
feedback

"In java, we have been taught about public/private/protected variables"

"Why is that not required in python?"

For the same reason it's not required in Java.

You're free to use -- or not use private and protected.

As a Python and Java programmer, I've found that private and protected are very, very important design concepts. But as a practical matter, in tens of thousands of lines of Java and Python, I've never actually used private or protected.

Why not?

Here's my question "protected from whom?"

Other programmers on my team? They have the source. What does protected mean when they can change it?

Other programmers on other teams? They work for the same company. They can -- with a phone call -- get the source.

Clients? It's work-for-hire programming (generally). The clients (generally) own the code.

So, who -- precisely -- am I protecting it from?

Right. The schizophrenic sociopath who refused to read the API comment blocks.

link|improve this answer
5  
+1 very well said. should have just added 'python gives you wings' – Omnipresent Oct 29 '09 at 2:44
@Omnipresent: I don't know about wings, but I do know that -- because of Java -- I don't make much use of duck typing. If I did, I might be even more productive in Python. I find that a good inheritance hierarchy (one that would translate to Java) is usually worth the effort in Python. – S.Lott Oct 29 '09 at 10:16
+1: best analysis of the concept ever. – Stefano Borini Nov 13 '09 at 9:13
8  
The very question "protected from whom?" simply shows you don't understand what this is about. It's not about security. It's about making it easy for your IDE to know which methods are part of the public interface, and making it easy for your compiler to show that nobody is accidentally using anything else, which together make it easier for you, the programmer, to reason about your program. – Porculus Jul 23 '10 at 0:27
1  
@Oben Sonne: "Things wouldn't work that smart if there were no distinction between private and public members"? Things? What things? "IDE's with code completion"? Is that the thing which wouldn't work smart? Please read amazon.com/Large-Scale-Software-Design-John-Lakos/dp/0201633620. Public/private/protected conflate too many things to be actually useful. The API documentation often conveys more -- and more useful -- information that private. private is simply too little information to be of any real value. – S.Lott Oct 14 '10 at 20:57
show 5 more comments
feedback

Python has limited support for private identifiers, through a feature that automatically prepends the class name to any identifiers starting with two underscores. This is transparent to the programmer, for the most part, but the net effect is that any variables named this way can be used as private variables.

See here for more on that.

In general, Python's implementation of object orientation is a bit primitive compared to other languages. But I enjoy this, actually. It's a very conceptually simple implementation and fits well with the dynamic style of the language.

link|improve this answer
feedback

My method is to use 512 bit variable name generate by Whirlpool and a random number generator. When variables names look like this "_P_3CCF8252D8BBB258460D9AA999C06EE38E67CB546CFFCF48E91F700F6FC7C183AC8CC3D3096DD30A35B01F4620A1E3A20D79CD5168544D9E1B7CDF49970E87F1". And this variable names change from one release version to another by automated script. It will not actually prevent or make the variables privat but it will make life difficult for anyone not using the provided API.

link|improve this answer
3  
That's pretty close to what "__foo" does. :-) – Kirk Strauser Feb 14 '10 at 5:40
3  
I can't tell if this is a joke or not... – mehaase Dec 23 '11 at 18:13
must be kidding dude :) – Ignas B. Jan 25 at 7:27
feedback

private and protected concepts are very important. But python - just a tool for prototyping and rapid development with restricted resources available for development, that is why some of protection levels are not so strict followed in python. You can use "__" in class member, it works properly, but looks not good enough - each access to such field contains these characters.

Also, you can noticed that python OOP concept is not perfect, smaltalk or ruby much closer to pure OOP concept. Even C# or Java are closer.

Python is very good tool. But it is simplified OOP language. Syntactically and conceptually simplified. The main goal of python existence is to bring to developers possibility to write easy readable code with high abstraction level in a very fast manner.

link|improve this answer
feedback

Python does not need to protect anyone from assigning a value to a member variable, because:

A) In Python you cannot accidentally make a typo such that a comparison turns into an assignment.
B) Python developers do not make mistakes.
C) All of the above.
D) What was the question again?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.