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

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

'\"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.''') 怎么换行啊,谢谢



提问者:慕斯1174349 2020-11-29 15:16

个回答

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

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

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

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

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

    所以。。怎么换行呢??

  • 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 字符串,里面的字符就不需要转义了。