Advertisement
Guest User

Untitled

a guest
Mar 25th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.15 KB | None | 0 0
  1. def add_thing(thing):
  2.     things.append(thing)
  3.  
  4. while True:
  5.     things = []
  6.     add_thing(1)
  7.     add_thing(2)
  8.     add_thing(3)
  9.     print(things)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement