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