Class method: __init__ and __call__ : Class call : Class : Python examples (example source code) Organized by topic

C++
PHP
Python


Python  »  Class   » [  Class call  ]  Screenshots 
 



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
























Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.