print(re.findall("(life.* (Python)?)",s))
来源:10-15 一些关于学习正则的建议
ldc123_
2018-10-14
import re
s = 'life is short, I use Python, I love Python’
print(re.findall("(life.* (Python)?)",s))
[(‘life is short, I use Python, I love Python’, ‘Python’)] 为什么后面的Python也获取到了
写回答
2回答
-
ldc123_
提问者
2018-10-16
1132
022018-10-17 -
7七月
2018-10-15
匹配当然是贪婪的,这个讲过了啊
00
相似问题