两个list求差集

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了两个list求差集相关的知识,希望对你有一定的参考价值。

参考技术A 业务需要,List中存放含有多个字段的自定义对象,两个List中的对象只要主键一样就判断为相等,因此这里不能使用api List.removeAll(List)。 https://www.jb51.net/article/117750.htm

求两个列表的交集,并集,差集

求两个列表的交集,并集,差集

l1 = [1, 2, 3, 4, 5, 6]
l2 = [3, 4, 5, 6, 7, 8, 9]

# 两个列表的交集
lst_intersection = [i for i in l1 if i in l2]
# print(lst_intersection)  ----------->[3, 4, 5, 6]

# 两个列表的并集
lst_union = list(set(l1).union(set(l2)))
# print(lst_union) ---------->[1, 2, 3, 4, 5, 6, 7, 8, 9]

# 两个列表的差集
l1_diff = list(set(l1).difference(set(l2)))
# print(‘l1相对于l2的差集:‘,l1_diff)  ----------> l1相对于l2的差集: [1, 2]

l2_diff = list(set(l2).difference(set(l1)))
# print(‘l2相对于l1的差集:‘,l2_diff)  ----------> l2相对于l1的差集: [8, 9, 7]

以上是关于两个list求差集的主要内容,如果未能解决你的问题,请参考以下文章

java如何使用代码求两个list集合的差集呢?

python 两个list 求交集,并集,差集

怎么求两个List<ModelClass>的差集

list的取差集

arcgis怎么求差集

Python求两个list的交集并集补集对称差集的两种方法