Class method: __init__ and __call__ : Class call « Class « Python






Class method: __init__ and __call__

Class method: __init__ and __call__

class Prod:
     def __init__(self, value):
         self.value = value
     def __call__(self, other):
         return self.value * other

x = Prod(2)
print x(3)

print x(4)

           
       








Related examples in the same category