I'm trying to understand the following Python quine:
s = 's = %r\nprint(s%%s)'
print(s%s)
In particular, I'm having trouble finding any info about that %% part. Anyone know what that does exactly, in this context?
Postscript: Sorry for the silly question - it's just an escape character. My google search was focused on %%, which didn't lead me in the right direction. Thanks to those who took the time to respond! :)