_='_=%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..)
_='_=%r;print(_%%_)';print(_%_)works in python3. – Mechanical snail Jul 12 '11 at 2:28r='r=%r;print r%%r';print r%r(for python2), though. – Mechanical snail Jul 12 '11 at 2:53