码迷,mamicode.com
首页 > 编程语言 > 详细

python两个 list 获取交集,并集,差集的方法

时间:2018-09-15 13:52:11      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:enc   span   style   div   bsp   高效   val   nbsp   inter   

1. 获取两个list 的交集

#方法一:
a=[2,3,4,5]
b=[2,5,8]
tmp = [val for val in a if val in b]
print tmp
#[2, 5]

#方法二
print list(set(a).intersection(set(b)))

2. 获取两个list 的并集

print list(set(a).union(set(b)))

3. 获取两个 list 的差集

print list(set(b).difference(set(a))) # b中有而a中没有的      非常高效!

 

python两个 list 获取交集,并集,差集的方法

标签:enc   span   style   div   bsp   高效   val   nbsp   inter   

原文地址:https://www.cnblogs.com/chen-lhx/p/9650675.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!