📜  python 检查列表包含另一个列表 - Python 代码示例

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

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

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

print(set_A.intersection(set_B))

# True if there is any element same
# False if there is no element same