Advertisement
Guest User

Untitled

a guest
Sep 24th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.11 KB | None | 0 0
  1. class Bob:
  2.     attr = 34
  3.     def foobar(self):
  4.         print self.attr
  5.  
  6. b = Bob()
  7. b.foobar()
  8.  
  9. b.attr = 3
  10. b.foobar()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement