Advertisement
Guest User

Untitled

a guest
Jul 3rd, 2012
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. class A:
  2.     def __init__(self):
  3.         x = 0
  4.     def test(self):
  5.         self.y = 0
  6.  
  7. instance = A()
  8. instance.test()
  9. print instance.y #throws error 'no attribute'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement