Skip to content

Instantly share code, notes, and snippets.

@kunigami
Created January 26, 2020 21:04
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 kunigami/d4cd16fc996f2d9f1d8e4c01911abd99 to your computer and use it in GitHub Desktop.
Save kunigami/d4cd16fc996f2d9f1d8e4c01911abd99 to your computer and use it in GitHub Desktop.
def naturals():
n = 0
while True:
yield n
n += 1
for i in naturals():
print(i)
if i > 10:
break
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment