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

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

慕斯卡123

2021-09-30 19:18


相关截图:

61559c3a00017b8410800675.jpg
2
61559c4300012c6b06420098.jpg

写回答 关注

1回答

  • 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()函数打印了哟。

    慕斯卡123

    好的,谢谢

    2021-10-03 09:04:04

    共 1 条回复 >

Python3 入门教程(新版)

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

154175 学习 · 1075 问题

查看课程

相似问题