列表包含任何值
检查values
中的任何元素是否包含在lst
中。
- 使用
for
循环检查values
中的任何值是否包含在lst
中。 - 如果找到任何一个值,则返回
True
,否则返回False
。
def includes_any(lst, values):
for v in values:
if v in lst:
return True
return False
includes_any([1, 2, 3, 4], [2, 9]) # True
includes_any([1, 2, 3, 4], [8, 9]) # False