有時候在正則需要匹配多行型豁。
可以添加標志參數re.S,如: re.findall(pattern, str, re.S)
re.S
re.findall(pattern, str, re.S)
參考:正則表達式匹配多行的三個方法(Python)