码迷,mamicode.com
首页 > 编程语言 > 详细

python 集合

时间:2019-04-19 00:44:19      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:去重   列表生成式   判断   python   pytho   super   生成式   生成   section   

list_1 = [1,4,5,7,3,6,7,9]

list_1 = set(list_1) #列表排序,去重复


list_2 = set([2,6,0,66,8,4])

list_1.intersection( list_2 ) #获取两个列表的交集

list_1.union(list_2) #获取两个列表并集

list_1.difference(list_2) #获取两个列表差集

list_1.issubset(list_2) #判断是否是子集

list_1.issuperset(list_2) #判断是都是父集

list_1.isdisjoint(list_2) #判断是否有交集


交集
list_1 & list_2

并集
list_1 2 list_1

 

列表生成式
[i*2 for i in range(10)]

 

python 集合

标签:去重   列表生成式   判断   python   pytho   super   生成式   生成   section   

原文地址:https://www.cnblogs.com/jasonLiu2018/p/10733344.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!