1. 获取两个 list 的交集
a = [1, 2, 3, 4]
b = [1, 2, 5]
print(list(set(a).intersection(set(b))))
2. 获取两个 list 的并集
print(list(set(a).union(set(b))))
3. 获取两个 list 的差集
print(list(set(a).difference(set(b)))) # 打印出 a 中有的而 b 中没有的
1. 获取两个 list 的交集
a = [1, 2, 3, 4]
b = [1, 2, 5]
print(list(set(a).intersection(set(b))))
2. 获取两个 list 的并集
print(list(set(a).union(set(b))))
3. 获取两个 list 的差集
print(list(set(a).difference(set(b)))) # 打印出 a 中有的而 b 中没有的
转载于:https://www.cnblogs.com/zuozuolearning/p/9799378.html