1、交集
#方法一:
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、并集
print list(set(a).union(set(b)))
3、差集
print list(set(b).difference(set(a))) # b中有而a中没有的
1、交集
#方法一:
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、并集
print list(set(a).union(set(b)))
3、差集
print list(set(b).difference(set(a))) # b中有而a中没有的
转载于:https://my.oschina.net/u/1020238/blog/486611