非贪心捕获 Demo #!/usr/bin/python3 import re # 非贪心:只要找到符合条件的 就返回值 # 贪心 : 近可能将符合条件的放在一次中返回 content='<h>ddedadsad</h><div>graph</div>bb<div>math</div>cc' pat=re.compile(r"<div>(.*?)</div>") m=pat.findall(content) print(m) # ['graph', 'math'] 运行结果