Этот фрагмент:
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."
)
при запуске печатает эту строку:
'I had this thing.' 'That you could type up right.' "But it didn't sing." 'So I said goodnight.'
Почему "But it didn't sing."
попал в двойные кавычки, когда остальные три элемента были в одинарных кавычках?
(Этот код взят из Learn Python the Hard Way Exercise 8.)