Guest User

Untitled

a guest
Oct 21st, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. class c1:
  2. i = 99
  3. def n1(self):
  4. print "this is: ", self.i, "self is",self
  5. def __init__(self,y):
  6. print "abc"
  7. i=y
  8.  
  9.  
  10. obj1 = c1(1)
  11. obj2 = c1(4)
  12. obj1.n1()
  13. obj2.n1()
  14.  
  15. print "obj1 is:" ,obj1
Add Comment
Please, Sign In to add comment