Python中list的交、并、差集获取方法示例
人气:01. 获取两个list 的交集
# -*- 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 的并集
print list(set(a).union(set(b)))
3. 获取两个list 的差集
print list(set(b).difference(set(a))) # b中有而a中没有的 print list(set(a).difference(set(b))) # a中有而b中没有的
总体代码及执行结果:
# -*- 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))) print list(set(a).union(set(b))) print list(set(b).difference(set(a))) # b中有而a中没有的 print list(set(a).difference(set(b))) # a中有而b中没有的
/usr/bin/python /Users/nisj/PycharmProjects/EsDataProc/mysql_much_tab_data_static.py
[2, 5]
[2, 5]
[2, 3, 4, 5, 8]
[8]
[3, 4]
Process finished with exit code 0
您可能感兴趣的文章:
- Python中的list与tuple集合区别解析
- Python实现两个list求交集,并集,差集的方法示例
- python 集合 并集、交集 Series list set 转换的实例
- Python判断两个list是否是父子集关系的实例
- Python求两个list的差集、交集与并集的方法
- Python中list循环遍历删除数据的正确方法
- 详细整理python 字符串(str)与列表(list)以及数组(array)之间的转换方法
- Python BeautifulSoup [解决方法] TypeError: list indices must be integers or slices, not str
- 如何基于python生成list的所有的子集
加载全部内容