Skip to content

Instantly share code, notes, and snippets.

@arliber
Created February 16, 2021 07:33
Show Gist options
  • Save arliber/a18ed878167274857105497a497f5f61 to your computer and use it in GitHub Desktop.
Save arliber/a18ed878167274857105497a497f5f61 to your computer and use it in GitHub Desktop.
nonlocal #snippet #python
def limit_5():
remaining = 5
def hello(name):
nonlocal remaining
if remaining <= 0:
raise TypeError("No more runs left!")
else:
remaining -= 1
return f"Hello, {name}"
return hello
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment