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.
|
I'm doing it like:
or
I'm new to Python, so i'm still exploring the syntax, and i'd like some advice on doing this.
| |||||
feedback
|
|
The Pythonic way is to not use them. If you must have them then hide them behind a property. | |||||||||
feedback
|
|
Check out the "@property" decorator: http://docs.python.org/library/functions.html#property. | |||||
|
feedback
|
|
Try this: Python Property The sample code is:
| |||
|
feedback
|
|
Here's a pretty good blog post on properties (getters, setters) in Python: | |||
|
feedback
|
| |||
|
feedback
|