Skip to content

Instantly share code, notes, and snippets.

Created February 8, 2012 03:43
Show Gist options
  • Save anonymous/1765164 to your computer and use it in GitHub Desktop.
Save anonymous/1765164 to your computer and use it in GitHub Desktop.
def test():
result = []
for x in range(10):
def func(x=x): # is there a way to get this effect without listing every variable used in the body?
print x
result.append(func)
return result
for f in test():
f()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment