I'm doing it like:

def set_property(property,value):  
def get_property(property):  

or

object.property = value  
value = object.property

I'm new to Python, so i'm still exploring the syntax, and i'd like some advice on doing this.

link|improve this question

If you're JUST getting/setting the variable, and nothing else, then why not just make the variable "public" (encourage users of your code to access it directly)? Then if you need some more complicated behavior later on, you can use a property as others have said, and it won't break existing code. – MatrixFrog Apr 13 '10 at 9:55
So,for what i read, getters and setters are completely optional. That's one of the things i'm obsessed about in Python: it is elegant,concise,and it doesn't like wasting our time. For now, i'll use the direct setting method, and when i'm in a situation where properties are needed, i'll give it a go. – Jorge Apr 13 '10 at 16:41
feedback

5 Answers

up vote 14 down vote accepted

The Pythonic way is to not use them. If you must have them then hide them behind a property.

link|improve this answer
2  
Required reading: dirtsimple.org/2004/12/python-is-not-java.html – Ned Deily Apr 13 '10 at 5:20
4  
feedback

Check out the "@property" decorator: http://docs.python.org/library/functions.html#property.

link|improve this answer
Fantastic! Thank you! – Jorge Apr 13 '10 at 4:43
Thanks, @TheMachineCharmer -- I should have done that :} – Kevin Little Apr 13 '10 at 4:47
feedback

Try this: Python Property

The sample code is:


class C(object):
    def __init__(self):
        self._x = None

    @property
    def x(self):
        """I'm the 'x' property."""
        print "getter of x called"
        return self._x

    @x.setter
    def x(self, value):
        print "setter of x called"
        self._x = value

    @x.deleter
    def x(self):
        print "deleter of x called"
        del self._x
link|improve this answer
feedback

Here's a pretty good blog post on properties (getters, setters) in Python:
The Python Property Builtin

link|improve this answer
feedback
In [1]: class test(object):
    def __init__(self):
        self.pants = 'pants'
    @property
    def p(self):
        return self.pants
    @p.setter
    def p(self, value):
        self.pants = value * 2
   ....: 
In [2]: t = test()
In [3]: t.p
Out[3]: 'pants'
In [4]: t.p = 10
In [5]: t.p
Out[5]: 20
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.