import reprint(re.findall('I\\b','hellow I am LIST'))#输出 ['I']print(re.findall("\\\\l","abca\lsd"))#输出 ['\\l']为什么第一个匹配\b只要2个\,而第二个匹配\l则需要4个呢? 查看完整描述