Skip to content

Instantly share code, notes, and snippets.

@ycui1
Created October 10, 2021 13:51
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 ycui1/f2b36ed5d895066ecf93fa76a4fe772e to your computer and use it in GitHub Desktop.
Save ycui1/f2b36ed5d895066ecf93fa76a4fe772e to your computer and use it in GitHub Desktop.
def make_incrementer(step):
counter = 0
def incrementer():
nonlocal counter
counter += step
return counter
return incrementer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment