Skip to content

Instantly share code, notes, and snippets.

@gotraveltoworld
Created May 1, 2018 16:11
Show Gist options
  • Save gotraveltoworld/d1eb8c57ed073e75a94a0fbce9bd1a7d to your computer and use it in GitHub Desktop.
Save gotraveltoworld/d1eb8c57ed073e75a94a0fbce9bd1a7d to your computer and use it in GitHub Desktop.
Generator expressions of python
# generator expressions
x_iter = (x for x in range(5))
print(x_iter)
# <generator object <genexpr> at 0x7fd7339355c8>
for x in x_iter:
print(x)
# 0 - 4
print(next(x_iter))
# Traceback (most recent call last): File "python", line 5, in <module>
# StopIteration
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment