Posted in Python onAugust 01, 2019
1. 获取两个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的交、并、差集获取方法示例
- Author -
BabyFish13声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@