📌  相关文章
📜  检查一个列表是否包含另一个列表中的任何项目python代码示例

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

代码示例4
## using set
list_A = [1, 2, 3, 4]
list_B = [5,1]

set_A = set(list_A)
set_B = set(list_B)

output = False if (set_A.intersection(set_B) == set()) else True
print(output)
# True if there is any element same
# False if there is no element same