Advertisement
Guest User

Untitled

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