Skip to content

Instantly share code, notes, and snippets.

@dawranliou
Created April 26, 2018 00:01
Show Gist options
  • Save dawranliou/b779b61f41c7b2b363b84c59812dbc76 to your computer and use it in GitHub Desktop.
Save dawranliou/b779b61f41c7b2b363b84c59812dbc76 to your computer and use it in GitHub Desktop.
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