Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.09 KB | None | 0 0
  1. def append(value, lst=[]):
  2.     lst.append(value)
  3.     print(lst)
  4.  
  5. append(1)
  6. append(2)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement