python转义字符失效的原因:
1、转义字符前加了字母“r”
r 可使字符串内(除字符串最后一位是 \ 的情况)所有的转义字符 \ 都失效。
>>> print("hello world!") hello world! >>> print("hello\n world!") hello world! >>> print("hello"r"\n world!") hello\n world!
2、在转义字符前加“\”
更多Python知识请关注Python自学网。
python转义字符失效的原因:
1、转义字符前加了字母“r”
r 可使字符串内(除字符串最后一位是 \ 的情况)所有的转义字符 \ 都失效。
>>> print("hello world!") hello world! >>> print("hello\n world!") hello world! >>> print("hello"r"\n world!") hello\n world!
2、在转义字符前加“\”
更多Python知识请关注Python自学网。
Python全栈+人工智能VIP课程,手把手带领大家从零基础学习Python语言以及人工智能应用开发。结合实际项目案例,由浅入深、全面系统地培养大家的独立开发能力,以从容应对企业开发任务,应对智能时代的新需求。
Python教程21198次浏览
© 2021 Python学习网 苏ICP备2021003149号-1