Skip to content

Instantly share code, notes, and snippets.

@aminami1127
Created February 3, 2015 06:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aminami1127/e0e29b94ead611fd65f3 to your computer and use it in GitHub Desktop.
Save aminami1127/e0e29b94ead611fd65f3 to your computer and use it in GitHub Desktop.
itertools.count
def count(start, stop, step):
x = itertools.count(start, step)
for i in x:
if i > stop:
break
yield i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment