import reprint(re.findall('I\\b','hellow I am LIST'))#输出 ['I']print(re.findall("\\\\l","abca\lsd"))#输出 ['\\l']
为什么第一个匹配\b只要2个\,而第二个匹配\l则需要4个呢?
\b
\
\l
慕妹3146593
相关分类