Skip to content

Instantly share code, notes, and snippets.

@Faheetah
Created October 1, 2016 21:41
Show Gist options
  • Save Faheetah/b89a2b31555d529cb02a6b5e403dea80 to your computer and use it in GitHub Desktop.
Save Faheetah/b89a2b31555d529cb02a6b5e403dea80 to your computer and use it in GitHub Desktop.
Pointless self replicating Python script
contents = '''contents = {0}{0}{0}{1}{0}{0}{0}
contents = contents.format('\{0}',contents)
with open("pointless.py", "w") as f:
f.write(contents)
'''
contents = contents.format('\'',contents)
with open("pointless.py", "w") as f:
f.write(contents)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment