我有两个清单。我需要编写一个detect
函数
一个“for item in list_a”循环来检查该项目是否存在于 list_b 中。
我该怎么做呢?没有适当的关键字,我找不到任何东西!
list_a = ["Q", "W", "E"]
list_b = ["Q", "D", "E"]
def detect(item):
return
detect(list_a[0])
>>True
detect(list_a[1])
>>False
我努力了:
for item in list_a:
if item in list_b:
return True
else:
return False