Invalid escape sequence Permanently deleted user Created March 22, 2021 16:09 Why does my pycharm PEP 8: W605 gives this warning on a statement like this one below? coordlist = re.findall('\d{1,4}', bounds) Warning: Invalid escape sequence \d
Hi, if you go to https://www.flake8rules.com/rules/W605.html you will find that this is an anti-pattern, and the best practice is to use the raw string.