I'm pretty new to Python, so if there's anything here that's flat-out bad, please point it out.
I have an object with this dictionary:
traits = {'happy': 0, 'worker': 0, 'honest': 0}
The value for each trait should be an int in the range 1-10, and new traits should not be allowed to be added. I want getter/setters so I can make sure these constraints are being kept. Here's how I made the getter and setter now:
def getTrait(self, key):
if key not in self.traits.keys():
raise KeyError
return traits[key]
def setTrait(self, key, value):
if key not in self.traits.keys():
raise KeyError
value = int(value)
if value < 1 or value > 10:
raise ValueError
traits[key] = value
I read on this website about the property() method. But I don't see an easy way to make use of it for getting/setting the values inside the dictionary. Is there a better way to do this? Ideally I would like the usage of this object to be obj.traits['happy'] = 14, which would invoke my setter method and throw a ValueError since 14 is over 10.
obj.traitsas an object, so you could get/setobj.traits.happy? – Daniel Roseman Oct 13 '11 at 22:00value = int(value). That will throw some kind of exception (can't remember what) ifvaluecan't be turned into an integer, e.g.int('dog'). However, note also thatint(2.5)returns2, so if that's not what you want check thatint(value) == float(value)as well. – andronikus Oct 13 '11 at 23:13