Skip to content

Instantly share code, notes, and snippets.

@ViktorStiskala
Created May 28, 2014 10:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ViktorStiskala/d9158f027b294f18cca6 to your computer and use it in GitHub Desktop.
Save ViktorStiskala/d9158f027b294f18cca6 to your computer and use it in GitHub Desktop.
with open('even_numbers.txt', 'w') as f:
for number in (n for n in range(10**100) if n%2 == 0):
f.write('{}\n'.format(number))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment