Python中对列表list求交集

方法1

遍历b1,如果某个元素同时也存在于b2中,则返回

b1=[1,2,3]
b2=[2,3,4]
b3 = [val for val in b1 if val in b2]
print b3

 

运行结果如下

dwapp@pttest1:/home/dwapp>python t1.py 
[2, 3]

 

 

方法2

把列表转换为集合,利用集合操作符求出交集,然后再转换回列表类型

b1=[1,2,3]
b2=[2,3,4]
b3=list(set(b1) & set(b2))
print b3

 

运行结果如下

dwapp@pttest1:/home/dwapp>python t1.py 
[2, 3]

 

 

前面的例子中两个list都是简单的单元素列表,还有一种比较特殊的情况,就是有嵌套类型的

b1=[1,2,3]
b2=[[2,4],[3,5]]
b3 = [filter(lambda x: x in b1,sublist) for sublist in b2]
print b3

 

运行结果如下

dwapp@pttest1:/home/dwapp>python t1.py 
[[2], [3]]

 

下面是文档中对filter的解释

filter(function, iterable) 
Construct a list from those elements of iterable for which function returns true. iterable may be either a sequence, a container which supports iteration, or an iterator. If iterable is a string or a tuple, the result also has that type; otherwise it is always a list. If function is None, the identity function is assumed, that is, all elements of iterable that are false are removed.

Note that filter(function, iterable) is equivalent to [item for item in iterable if function(item)] if function is not None and [item for item in iterable if item] if function is None.


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值