python转义字符失效的原因是什么?
python转义字符失效的原因:
1、转义字符前加了字母“r”
r 可使字符串内(除字符串最后一位是 的情况)所有的转义字符 都失效。
>>> print("hello world!") hello world! >>> print("hello world!") hello world! >>> print("hello"r" world!") hello world!
2、在转义字符前加“”
更多Python知识请关注云海天python教程网。
来源:PY学习网:原文地址:https://www.py.cn/article.html