Skip to content

Instantly share code, notes, and snippets.

@skimbrel
Created January 5, 2014 22:26
Show Gist options
  • Save skimbrel/8274813 to your computer and use it in GitHub Desktop.
Save skimbrel/8274813 to your computer and use it in GitHub Desktop.
In [1]: def do_a_nasty(oops=[]):
...: oops.append(3)
...: print oops
...:
In [2]: do_a_nasty()
[3]
In [3]: do_a_nasty()
[3, 3]
In [4]: do_a_nasty()
[3, 3, 3]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment