Created
April 26, 2018 00:01
-
-
Save dawranliou/b779b61f41c7b2b363b84c59812dbc76 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
from itertools import count | |
numbers = count() | |
next(numbers) # 0 | |
next(numbers) # 1 | |
next(numbers) # 2 | |
next(numbers) # 3 | |
#... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment