不懂就问

来源:3-6 Python中raw字符串与多行字符串

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

写回答 关注

1回答

  • 可可别做梦了好好学习
    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'''……'''的好处就是,完全不需要考虑\了

Python3 入门教程(新版)

python3入门教程,让你快速入门并能编写简单的Python程序

154172 学习 · 1075 问题

查看课程

相似问题