Last active
August 29, 2015 13:55
-
-
Save michaelsproul/8767637 to your computer and use it in GitHub Desktop.
Python Quine
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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