為什么沒有換行?
>>> 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.
>>>
2019-09-02
2019-07-11
這是多行,講義里面有
2019-06-20
print r'''"To be,or not to be":that is the question.
Whether it's noblerin the mind to suffer.'''