Playing with what I like
s='s=%r;print s%%s';print s%s
How does this work? I am familiar with the print "one %s three" % "two"use of the % sign, but how does this work with simply printing s%s at the end?
How does this work? I am familiar with the
ReplyDeleteprint "one %s three" % "two"
use of the % sign, but how does this work with simply printing s%s at the end?