class TestClass(object):
def __init__(self):
self.value = 100
self.x = lambda: self.value.__add__(100)
self.run()
def run(self):
self.x()
print self.value
t = TestClass()
#Output: 100
I would like to able to define a lambda function such as the one in TestClass and have it alter an instance variable. It would seem that the way the lambda is constructed means that it does not modify the original value. I suspect that this to do with Python's reference strategy which I do more or less understand.
So accepting the flaws in what I have done, is there a similar way to get similar functionality? I ultimately need to define many methods like x and intend to keep them in a dictionary as they will form a simple instruction set. As far as I can tell I need either to use lambdas or exec to do what I want.
defstatement in a dictionary. – chepner May 15 '12 at 21:29lambdabut if I can do it this way the source will be a lot more readable. Well, it will at least be a lot more readable to my eye. – sheepez May 15 '12 at 21:33def x(self): return somethingon one line. If you post some of the code you use to store your methods in a dictionary, we can figure out if lambdas are really necessary or useful. – chepner May 15 '12 at 21:35