Search Results

2
votes

Class attributes with a “calculated” name

class C (object): pass c = C() c.__dict__['foo'] = 42 c.foo # returns 42 …