双引号为什么没有出现\”

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

qq_慕粉9327697

2021-11-14 10:53

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

写回答 关注

2回答

  • x慕杨人1437
    2022-01-29 10:51:21

    字符串前面加个前缀r,表示这是一个 raw 字符串,里面的字符就不需要转义

  • 慕仰1423680
    2021-11-14 14:31:36

    因为r内部的字符串默认不转义

Python3 入门教程(新版)

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

154159 学习 · 1075 问题

查看课程

相似问题