Skip to content

Instantly share code, notes, and snippets.

@LandonPowell
Created March 17, 2016 21:19
Show Gist options
  • Save LandonPowell/6343ed0dca6dec4b199b to your computer and use it in GitHub Desktop.
Save LandonPowell/6343ed0dca6dec4b199b to your computer and use it in GitHub Desktop.
count = 0
string = "z"
while True:
with open(hex(count), "a+") as file:
file.write(string)
string += string
count += 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment