This snippet:
formatter = "%r %r %r %r"
print formatter % (
"I had this thing.",
"That you could type up right.",
"But it didn't sing.",
"So I said goodnight."
)
when run, prints this string:
'I had this thing.' 'That you could type up right.' "But it didn't sing." 'So I said goodnight.'
Why did "But it didn't sing." get put in double quotes when the other three items were in single quotes?
(This code is taken from Learn Python the Hard Way Exercise 8.)
'But it didn't sing'. – stummjr Aug 11 '12 at 19:36'being mis-interpreted as the beginning or end of another string. – Robert Harvey♦ Aug 11 '12 at 19:37