Skip to content

Instantly share code, notes, and snippets.

@fortune
Created April 17, 2012 05:34
Show Gist options
  • Save fortune/2403721 to your computer and use it in GitHub Desktop.
Save fortune/2403721 to your computer and use it in GitHub Desktop.
Quine プログラム。この Python スクリプトを実行すると、スクリプト自身が出力される。
b = '''def q(d):
s = "b = '"
s += """''"""
s += d
s += "''"
s += "'"
s += """
"""
return s
a = q(b)
self_data = a + b
print self_data'''
def q(d):
s = "b = '"
s += """''"""
s += d
s += "''"
s += "'"
s += """
"""
return s
a = q(b)
self_data = a + b
print self_data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment