Skip to content

Instantly share code, notes, and snippets.

@ItsCosmas
Created May 9, 2019 08:59
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 ItsCosmas/d689aeef3df9bab95ffa17c80ad4ea68 to your computer and use it in GitHub Desktop.
Save ItsCosmas/d689aeef3df9bab95ffa17c80ad4ea68 to your computer and use it in GitHub Desktop.
def even_numbers(x):
for i in range(x):
if i % 2 == 0:
yield i
for i in even_numbers(100):
print(i)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment