Skip to content

Instantly share code, notes, and snippets.

@zhangcheng
Created May 17, 2013 04:19
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 zhangcheng/5596903 to your computer and use it in GitHub Desktop.
Save zhangcheng/5596903 to your computer and use it in GitHub Desktop.
def f(a, L=[]):
L.append(a)
return L
print f(1)
print f(2)
print f(3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment