Skip to content

Instantly share code, notes, and snippets.

@vals
Created November 8, 2012 22:20
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 vals/c5798e696e82f21fecd3 to your computer and use it in GitHub Desktop.
Save vals/c5798e696e82f21fecd3 to your computer and use it in GitHub Desktop.
in_file = open("numbers.txt", "r")
for line in in_file:
num = int(line) % 2000
out_file = open("numbers_%04i.txt" % num, "a")
out_file.write(line)
out_file.close()
in_file.close()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment