python转义字符失效的原因是什么?

图片[1]-python转义字符失效的原因是什么?-uusu优素-乐高,模型,3d打印,编程

python转义字符失效的原因:

1、转义字符前加了字母“r”

r 可使字符串内(除字符串最后一位是 \ 的情况)所有的转义字符 \ 都失效。

>>>print("helloworld!")
helloworld!
>>>print("hello\nworld!")
hello
world!
>>>print("hello"r"\nworld!")
hello\nworld!

2、在转义字符前加“\”

原文来自:https://www.py.cn
© 版权声明
THE END
喜欢就支持一下吧
点赞6 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容