为什么没有换行?
>>> print(r'''"To be,or not to be":that is the question.Whether it's noblerin the mind to suffer.''')
"To be,or not to be":that is the question.Whether it's noblerin the mind to suffer.
>>> print('\"To be, or not to be\": that is the question.\nWhether it\'s nobler in the mind to suffer.')
"To be, or not to be": that is the question.
Whether it's nobler in the mind to suffer.
>>>