python两个 list 获取交集,并集,差集的方法
2021-06-28 02:03
标签:enc span style div bsp 高效 val nbsp inter 1. 获取两个list 的交集 2. 获取两个list 的并集 3. 获取两个 list 的差集 python两个 list 获取交集,并集,差集的方法 标签:enc span style div bsp 高效 val nbsp inter 原文地址:https://www.cnblogs.com/chen-lhx/p/9650675.html#方法一:
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)))
print list(set(a).union(set(b)))
print list(set(b).difference(set(a))) # b中有而a中没有的 非常高效!
文章标题:python两个 list 获取交集,并集,差集的方法
文章链接:http://soscw.com/index.php/essay/98678.html