Mega Code Archive

 
Categories / Python / Class
 

Class method

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)