我正在使用这个脚本:
import re
message = 'oh, hey there'
matches = ['hi', 'hey', 'hello']
def process(message):
for item in matches:
search = re.match(item, message)
if search == None:
return False
return True
print process(message)
基本上,我的目标是检查 的任何部分message
是否在 中的任何项目内matches
,但是使用此脚本,它总是返回False
(不匹配)。
有人可以指出我在这段代码中是否做错了什么?