Python3:求两个list的差集、并集与交集
原文地址:https://www.jianshu.com/p/1109e22b50c6
在python3对列表的处理中,会经常使用到Python求两个list的差集、交集与并集的方法。
一.两个list差集
如有下面两个数组:
a = [1,2,3]
b = [2,3]
想要的结果是[1]
下面记录一下三种实现方式:
1. 正常的方式
ret = [] for i in a: if i not in b: ret.append(i)
2.简化版
ret = [ i for i in a if i not in b]
3.高级版
ret = list(set(a) ^ set(b))
4.最终版
print(list(set(b).difference(set(a)))# b中有而a中没有的
二.两个list并集
print(list(set(a).union(set(b))))
三.两个list交集
print(list(set(a).intersection(set(b))))
版权声明:本文为zhumengke原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。