1. 获取两个list 的交集
[python] view plain copy
- # -*- coding=utf-8 -*-
- #方法一:
- 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 的并集
[python] view plain copy
- print list(set(a).union(set(b)))
3. 获取两个list 的差集
[python] view plain copy
- print list(set(b).difference(set(a))) # b中有而a中没有的
- print list(set(a).difference(set(b))) # a中有而b中没有的
时间: 2024-11-13 06:32:48