问答详情
源自:3-6 Python中raw字符串与多行字符串

不懂就问

# 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那里是三个'''而不是四个'''',(有一个'是题目里有的)

提问者:weixin_慕丝9501451 2021-09-05 00:52

个回答

  • 可可别做梦了好好学习
    2021-09-06 14:49:17

    是4个,加上空格就行,记得在'''与'中间加上空格,'和"中间也要加上空格

    print(r''' ' " To be, or not to be":that is the question.

            Whether it's nobler in the mind to suffer.' ''')

    r'''……'''的好处就是,完全不需要考虑\了