Skip to content

Instantly share code, notes, and snippets.

@michaelsproul
Last active August 29, 2015 13:55
Show Gist options
  • Save michaelsproul/8767637 to your computer and use it in GitHub Desktop.
Save michaelsproul/8767637 to your computer and use it in GitHub Desktop.
Python Quine
#!/usr/bin/env python
x = """#!/usr/bin/env python
x = {0}
# These comments make up 40% of this quine.
print(x.format('"'*3 + x + '"'*3))"""
# These comments make up 40% of this quine.
print(x.format('"'*3 + x + '"'*3))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment