Guest User

Untitled

a guest
Nov 20th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.42 KB | None | 0 0
  1. class TheThing(object):
  2.  
  3.     def __init__(self):
  4.         self.number = 0
  5.  
  6.     def some_function(self):
  7.         print "I got called."
  8.  
  9.     def add_me_up(self, more):
  10.         self.number += more
  11.         return self.number
  12.  
  13. a = TheThing()
  14. b = TheThing()
  15.  
  16. a.some_function()
  17. b.some_function()
  18.  
  19. print a.add_me_up(20)
  20. print a.add_me_up(20)
  21. print b.add_me_up(30)
  22. print b.add_me_up(30)
  23.  
  24. print a.number
  25. print b.number
Add Comment
Please, Sign In to add comment