Created
May 1, 2018 16:11
-
-
Save gotraveltoworld/d1eb8c57ed073e75a94a0fbce9bd1a7d to your computer and use it in GitHub Desktop.
Generator expressions of python
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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