_='_=%r;print _%%_';print _%_

is this the shortest possible python quine, or can it be done better? (not counting the trivial 'empty' program). it seems to improve on all the entries on The Quine Page.

i am not counting Terry Reedy's submission which i feel is invalid because of the double quotes (if that's allowed, is "hello world" a quine? or "'" for that matter? i'm not too sure on the strictly formal definition of a quine..)

link|improve this question

Won't work with Python 3.x, by the way. – Michael Foukarakis Jun 3 '11 at 5:27
1  
"can it be done better?" Although this question has definitively an answer it is hard to be answered (unless the answer is yes and you have a counterexample). How should someone know without testing ALL possible shorter programs? – Howard Jun 3 '11 at 5:27
@Howard: At some point, there aren't all that many of those... – Nemo Jun 3 '11 at 5:32
1  
For the record, _='_=%r;print(_%%_)';print(_%_) works in python3. – Mechanical snail Jul 12 '11 at 2:28
1  
I'd prefer to write it as r='r=%r;print r%%r';print r%r (for python2), though. – Mechanical snail Jul 12 '11 at 2:53
show 3 more comments
feedback

2 Answers

I would say:

print open(__file__).read()

Source

link|improve this answer
That's not really in the spirit of the question. – Nick ODell Jun 3 '11 at 5:34
@Nick ODell - Just mentioning! – manojlds Jun 3 '11 at 5:36
Oh, and if you put backslashes before the parens, the link in your post won't be broken. – Nick ODell Jun 3 '11 at 5:37
@Nick ODell - thanks, but that didn't help. – manojlds Jun 3 '11 at 5:39
hahaah! very nice thank-you .. what a shame it doesn't work in the interpreter, echo "print open(__file__).read()" | python - throws IOError of course.. but i put it in a file called q , and even counting that extra character for the filename it's ONE shorter – wim Jun 3 '11 at 5:59
feedback

Technically, the shortest Python quine is the empty file. Apart from this trivial case:

Since Python's print automatically appends a newline, the quine is actually "_='_=%r;print _%%_';print _%_\n" (without quotes).

link|improve this answer
1  
hmm, you are right. alternatively , perhaps the new line can be suppressed like r='r=%r;print r%%r,';print r%r, – wim Jul 12 '11 at 3:18
That would be 1 character longer, and it wouldn't work in python3. – Mechanical snail Jul 12 '11 at 18:48
err.. are you counting \n as 1 character or 2 ? – wim Jul 13 '11 at 1:45
@wim: 1 character (on Linux). – Mechanical snail Jul 13 '11 at 4:22
that is odd. at the source code level, i would still call this \n two characters, an \n is quite different from an actual newline in the source code – wim Jul 13 '11 at 7:23
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.