How would I get return values in this case. (as I would a function)
class A(object):
def __init__(self,a,b):
self.a = a
self.b = b
self.run()
def run(self):
return a + b
When I do that I get an instance, how would I get a return value?
Thanks James