集合set()

Posted yang950718

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了集合set()相关的知识,希望对你有一定的参考价值。

2.7集合set。

集合是无序的,不重复的数据集合,它里面的元素是可哈希的(不可变类型),但是集合本身是不可哈希(所以集合做不了字典的键)的。以下是集合最重要的两点:

  去重,把一个列表变成集合,就自动去重了。

  关系测试,测试两组数据之前的交集、差集、并集等关系。

1,集合的创建。

set1 = set({1,2,barry})
set2 = {1,2,barry}
print(set1,set2)  # {1, 2, ‘barry‘} {1, 2, ‘barry‘}

 

2,集合的增。

技术分享图片
set1 = {alex,wusir,ritian,egon,barry}
set1.add(景女神)
print(set1)

#update:迭代着增加
set1.update(A)
print(set1)
set1.update(老师)
print(set1)
set1.update([1,2,3])
print(set1)

 

技术分享图片

3,集合的删。

技术分享图片
set1 = {alex,wusir,ritian,egon,barry}

set1.remove(alex)  # 删除一个元素
print(set1)

set1.pop()  # 随机删除一个元素
print(set1)

set1.clear()  # 清空集合
print(set1)

del set1  # 删除集合
print(set1)

 

技术分享图片

4,集合的其他操作:

  4.1 交集。(&  或者 intersection)

set1 = {1,2,3,4,5}
set2 = {4,5,6,7,8}
print(set1 & set2)  # {4, 5}
print(set1.intersection(set2))  # {4, 5}

 

  4.2 并集。(| 或者 union)

set1 = {1,2,3,4,5}
set2 = {4,5,6,7,8}
print(set1 | set2)  # {1, 2, 3, 4, 5, 6, 7,8}

print(set2.union(set1))  # {1, 2, 3, 4, 5, 6, 7,8}

 

  4.3 差集。(- 或者 difference)

set1 = {1,2,3,4,5}
set2 = {4,5,6,7,8}
print(set1 - set2)  # {1, 2, 3}
print(set1.difference(set2))  # {1, 2, 3}

 

   4.4反交集。 (^ 或者 symmetric_difference)

set1 = {1,2,3,4,5}
set2 = {4,5,6,7,8}
print(set1 ^ set2)  # {1, 2, 3, 6, 7, 8}
print(set1.symmetric_difference(set2))  # {1, 2, 3, 6, 7, 8}

 

  4.5子集与超集

技术分享图片
set1 = {1,2,3}
set2 = {1,2,3,4,5,6}

print(set1 < set2)
print(set1.issubset(set2))  # 这两个相同,都是说明set1是set2子集。

print(set2 > set1)
print(set2.issuperset(set1))  # 这两个相同,都是说明set2是set1超集。

 

以上是关于集合set()的主要内容,如果未能解决你的问题,请参考以下文章

peptide map DDA和IMS有啥区别

金蝶handler中 collection 代码片段理解

Alfred常见使用

spring练习,在Eclipse搭建的Spring开发环境中,使用set注入方式,实现对象的依赖关系,通过ClassPathXmlApplicationContext实体类获取Bean对象(代码片段

比较 C# 中的字符串片段并从集合中删除项目

Python_Set集合