Reputation: 5582
Does someone know why this is not a strict quine ?
_0='_0=%r;print _0%%_0';print _0%_0
Upvotes: 0
Views: 124
Reputation: 6694
The print statement appends a newline during execution, so you would need to include a newline in the snippet.
Upvotes: 5