Skip to content

Instantly share code, notes, and snippets.

@rec
Last active April 18, 2025 16:58
Show Gist options
  • Save rec/99c28617cc787e77d1481aaec8cacbc9 to your computer and use it in GitHub Desktop.
Save rec/99c28617cc787e77d1481aaec8cacbc9 to your computer and use it in GitHub Desktop.
funcs = []
for i in range(10):
def func(i=i):
return i
funcs.append(func)
print(*(f() for f in funcs))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment