Skip to content

Instantly share code, notes, and snippets.

@tekknolagi
Created August 28, 2020 18:39
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 tekknolagi/1719a18b728bc1fab7e9ea7e88e6efc7 to your computer and use it in GitHub Desktop.
Save tekknolagi/1719a18b728bc1fab7e9ea7e88e6efc7 to your computer and use it in GitHub Desktop.
def gen():
counter = 0
def get():
return counter
def inc():
nonlocal counter
counter += 1
return counter
return get, inc
for i in range(10):
get, inc = gen()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment