SHARE
TWEET
Untitled
a guest
Jul 3rd, 2012
23
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
- class A:
- def __init__(self):
- x = 0
- def test(self):
- self.y = 0
- instance = A()
- instance.test()
- print instance.y #throws error 'no attribute'
RAW Paste Data

