Skip to content

Instantly share code, notes, and snippets.

@ycui1
Created October 11, 2021 03:37
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/c18deb13bd1d61c1addd1245b8e14cd6 to your computer and use it in GitHub Desktop.
Save ycui1/c18deb13bd1d61c1addd1245b8e14cd6 to your computer and use it in GitHub Desktop.
>>> from functools import partial
>>> def incrementer(start, step):
... return start + step
...
>>> incrementer_by_one = partial(incrementer, step=1)
>>> incrementer_by_one(5)
6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment