weixin_慕丝9501451
2021-09-05 00:52
# Enter a
print(r'''"To be, or not to be":that is the question.
Whether it's nobler in the mind to suffer.''')
用r'''……'''来输出,为什么到最后suffer那里是三个'''而不是四个'''',(有一个'是题目里有的)
是4个,加上空格就行,记得在'''与'中间加上空格,'和"中间也要加上空格
print(r''' ' " To be, or not to be":that is the question.
Whether it's nobler in the mind to suffer.' ''')
r'''……'''的好处就是,完全不需要考虑\了
Python3 入门教程(新版)
154172 学习 · 1075 问题
相似问题