Skip to content

Instantly share code, notes, and snippets.

@hrchu
Last active July 5, 2021 12:58
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 hrchu/9e89c735fb5e77591626478bd901393e to your computer and use it in GitHub Desktop.
Save hrchu/9e89c735fb5e77591626478bd901393e to your computer and use it in GitHub Desktop.
Python generator simple usage
def gen():
a = range(5)
for x in a:
yield x
x = gen() # instanlize
x.__next__() # get next
Out[36]: 0
next(x) # alternative way
Out[37]: 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment