What's the pythonic way to use getters and setters?
- by Jorge
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.