Sunday, 14 October 2018

What's the pythonic way to use getters and setters?

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.



from What's the pythonic way to use getters and setters?

No comments:

Post a Comment