有时候在正则需要匹配多行。
可以添加标志参数re.S,如: re.findall(pattern, str, re.S)
re.S
re.findall(pattern, str, re.S)
参考:正则表达式匹配多行的三个方法(Python)