So I was going through "Learn Python the Hard Way"
and while doing this:
formatter = "%r %r %r %r"
print formatter % (
"I had this thing.",
"That you could up right.",
"But it didn't sing.",
"So I said goodnight"
)
the output was
'I had this thing.' 'That you could up right.' "But it didn't sing." 'So I said goodnight'
But I'm not sure why the 3rd string has double strings.