Guest User

Untitled

a guest
May 23rd, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. a = 12
  2.  
  3. class Test:
  4. a = 13
  5. def call_me(self):
  6. a = 14
  7. print a
  8.  
  9. test = Test()
  10. test.call_me()
  11. print a
Add Comment
Please, Sign In to add comment