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

为啥我打的是\,出来却变成了\\和\\\


相关截图:

61559c3a00017b8410800675.jpg
2
61559c4300012c6b06420098.jpg

提问者:慕斯卡123 2021-09-30 19:18

个回答

  • LVXC
    2021-10-02 16:29:49

    http://img3.mukewang.com/615817820001521e10990118.jpg

    可以将定义的字符串用一个变量保存,然后用print()语句打印这个变量就能得到结果正确了:

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

    print(str)

    PS:题目中也要求说用print()函数打印了哟。