I want to do something like
class A:
def __init__( self, left, right, op ):
self.left = left
self.right = right
self.op = op
def calculate( self ):
self.number = op( self.left, self.right )
return self.number
and use it, for example, like this:
a = A( 1, 2, + )
a2 = A( 2, 3, * )
I tried to do
op = +
op = __add__
but none of these worked. Can somebody tell is this possible (and if it is, how this is called, because I don't even know how to search it). Or the only possible way is to have a big, ugly if-else statement in calculate and check the value of op, which will be stored as str?
Thanks!