Skip to content

Instantly share code, notes, and snippets.

@orkaa
Created June 17, 2016 13:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save orkaa/a3f02a0a4b77cbadae0a19df1de4fbf6 to your computer and use it in GitHub Desktop.
Save orkaa/a3f02a0a4b77cbadae0a19df1de4fbf6 to your computer and use it in GitHub Desktop.
>>> def a(foo=[]):
... foo.append('bar')
... print foo
...
>>> a()
['bar']
>>> a()
['bar', 'bar']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment