Advertisement
tabebqena2

Untitled

Mar 9th, 2014
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.23 KB | None | 0 0
  1. class ex ():
  2.     def __init__(self , x):
  3.        print self.reset(self.get([self.tell(x)])
  4.     def reset(self , x):
  5.         return x
  6.        
  7.     def get(self , x):
  8.         return x
  9.  
  10.     def tell(self , x):
  11.         return x
  12. ex(5)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement