📌  相关文章
📜  检查列表的一部分是否在另一个列表中 python 代码示例

📅  最后修改于: 2022-03-11 14:46:02.370000             🧑  作者: Mango

代码示例1
'''    
    check if list1 contains any elements of list2
'''
result =  any(elem in list1  for elem in list2)
if result:
    print("Yes, list1 contains any elements of list2")    
else :
    print("No, list1 contains any elements of list2")