Skip to content

Instantly share code, notes, and snippets.

@ZhouYang1993
Created May 29, 2020 01:16
Show Gist options
  • Save ZhouYang1993/1e7cbbd5b943a9a39b3bb55594c2e401 to your computer and use it in GitHub Desktop.
Save ZhouYang1993/1e7cbbd5b943a9a39b3bb55594c2e401 to your computer and use it in GitHub Desktop.
Generators in Python
my_list = [i for i in range(8)]
my_generator = (i for i in range(8))
print(my_list)
print(my_generator)
# [0, 1, 2, 3, 4, 5, 6, 7]
# <generator object <genexpr> at 0x7f8fc3ec9a40>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment