Guest User

Untitled

a guest
Nov 21st, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. class Test(object):
  2. mylist = []
  3. def __init__(self):
  4. self.mylist.append("Hello")
  5.  
  6.  
  7. first_test = Test()
  8. second_test = Test()
  9. print first_test.mylist
  10. >> ['Hello', 'Hello']
Add Comment
Please, Sign In to add comment