Python 取列表共有元素(交集)

目录

交集:对于给定的两个集合,返回一个包含两个集合中共有元素的新集合。

使用 Python 元组数据类型 set 来实现交集操作。

a = [1, 2, 3]
b = [3, 4, 5]
c = set(a).intersection(set(b))
print(list(c))
# [3]