How to fix “ DeprecationWarning: invalid escape sequence” in Python?

前端 未结 2 1373
余生分开走
余生分开走 2020-12-30 22:47

I\'m getting lots of warnings like this in Python:

DeprecationWarning: invalid escape sequence \\A
  orcid_regex = \'\\A[0-9]{4}-[0-9]{4}-[0-9]{4}-[0-9]{3}[0         


        
相关标签:
2条回答
  • 2020-12-30 23:41

    \ is the escape character in Python string literals.

    For example if you want to put a tab character in a string you would do:

    >>> print("foo \t bar")
    foo      bar
    

    If you want to put a literal \ in a string you have to use \\:

    >>> print("foo \\ bar")
    foo \ bar
    

    Or use a "raw string":

    >>> print(r"foo \ bar")
    foo \ bar
    

    You can't just go putting backslashes in string literals whenever you want one. A backslash isn't valid when not followed by one of the valid escape sequences, and newer versions of Python print a deprecation warning. For example \A isn't an escape sequence:

    $ python3.6 -Wd -c '"\A"'
    <string>:1: DeprecationWarning: invalid escape sequence \A
    

    If your backslash sequence does accidentally match one of Python's escape sequences, but you didn't mean it to, that's even worse.

    So you should always use raw strings or \\.

    It's important to remember that a string literal is still a string literal even if that string is intended to be used as a regular expression. Python's regular expression syntax supports lots of special sequences that begin with \. For example \A matches the start of a string. But \A is not valid in a Python string literal! This is invalid:

    my_regex = "\Afoo"
    

    Instead you should do this:

    my_regex = r"\Afoo"
    

    Docstrings are another one to remember: docstrings are string literals too, and invalid \ sequences are invalid in docstrings too! Use raw strings (r"""...""") for docstrings if they contain \'s.

    0 讨论(0)
  • 2020-12-30 23:45

    When I changed \ to \\ in the name of the path, Resolved the Invalid escape sequence warning. For your reference please find the attached screenshot below. I was getting this error in pycharm:

    0 讨论(0)
提交回复
热议问题