# Quine - Program That Reproduces Itself # A quine is a clever bit of code that outputs its own source code. # It’s like looking in the mirror and seeing… well, your code staring right back at you. s = 's = {!r}; print(s.format(s))'; print(s.format(s)) #output => s = 's = {!r}; print(s.format(s))'; print(s.format(s))