r'''.....'' 怎么换行啊,谢谢

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

慕斯1174349

2020-11-29 15:16

'\"To be, or not to be\": that is the question.\nWhether it\'s nobler in the mind to suffer.'


print(r'''"To be, or not to be"''': that is the question.\n r'''Whether it\'s nobler in the mind to suffer.''') 怎么换行啊,谢谢



写回答 关注

6回答

  • 慕妹1074813
    2021-06-10 15:24:23

    cmd命令行怎么在'''...'''里面换行写后半段的。。

  • 自学Python
    2021-03-17 00:23:27

    http://img2.mukewang.com/6050db5b0001c62f10330154.jpg用了r'''...''' 换行直接 敲键盘 Enter 键 就可以了。 不用\n 转义符了。有图有真相

    幕布斯546...

    我的为什么就不行呢,按了enter,直接就写出来了

    2021-10-26 16:47:54

    共 1 条回复 >

  • 起啥名啊_嗝
    2021-01-23 19:13:37

    所以。。怎么换行呢??

    幕布斯546... 回复自学Pyth...

    我直接敲了enter,不换行呢。

    2021-10-26 16:45:45

    共 3 条回复 >

  • weixin_慕设计5386366
    2021-01-03 22:12:44

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

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


  • 慕浩
    2020-12-21 15:02:05

    print('\"To be, or not to be\": that is the question.\n'r'''Whether it\'s nobler in the mind to suffer.''')

    这样他就会在\n后面变成换行了。

  • 蝴蝶蓝兰
    2020-11-30 09:17:31
    print(r'''To be, or not to be:     
    that is the question.    
    Whether it's nobler in the mind to suffer.''')

    小伙子,代码这样子写哦,注意换行

    还有,如果一个字符串包含很多需要转义的字符,对每一个字符都进行转义会很麻烦。为了避免这种情况,我们可以在字符串前面加个前缀r,表示这是一个 raw 字符串,里面的字符就不需要转义了。

    十三_110...

    你这个不对吧,“”怎么没了?

    2021-01-13 18:32:52

    共 1 条回复 >

Python3 入门教程(新版)

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

154175 学习 · 1075 问题

查看课程

相似问题