Skip to content

Instantly share code, notes, and snippets.

@hronecviktor
Created November 25, 2017 21:22
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 hronecviktor/8b21be8f9c9766e754a6c25a54f7582a to your computer and use it in GitHub Desktop.
Save hronecviktor/8b21be8f9c9766e754a6c25a54f7582a to your computer and use it in GitHub Desktop.
def infinity():
i = 0
while True:
yield i
i += 1
for x in infinity():
# do shit
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment