• 技术文章 >常见问题 >Python常见问题

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

    yangyang2020-05-23 16:33:11原创6509

    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
    上一篇:Python中怎么转换人民币和美元? 下一篇:python怎么用画散点图?

    相关文章推荐

    • python中怎么调用另一个程序• python怎么计算面积?• 在mac系统怎么编写Python?

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网