一、问题描述
程序中包含正则表达式,如下:
pattern = '([_a-zA-Z0-9\u4e00-\u9fa5\`\~\!\@\#\$\%\^\&\*\(\)\_\+\-\=\[\]\{\}\\\|\;\'\'\:\"\"\,\.\/\<\>\?]{0,}'
执行程序的时候报错:ValueError: unsupported format character '\' (0x5c) at index 29
二、解决方案
正则表达式有问题,在\%后面再加一个%,即为:
pattern = '([_a-zA-Z0-9\u4e00-\u9fa5\`\~\!\@\#\$\%%\^\&\*\(\)\_\+\-\=\[\]\{\}\\\|\;\'\'\:\"\"\,\.\/\<\>\?]{0,}'
三、问题原因
python2和python3的区别,python3需要写后面一种