Python 集合方法总结
1、添加一个元素:
add(...)
Addan element to a set.
1
2
3
4
|
>>> a = { 'shaw' , 11 , 22 } >>>a.add( 'sina' ) >>> a { 'sina' , 11 , 22 , 'shaw' } |
2、清空集合
clear(...)
Remove all elements from this set.
1
2
3
4
|
>>> a = { 'shaw' , 11 , 22 } >>>a.clear() >>> a set () |
3、浅copy
copy(...)
Return a shallow copy of a set.
1
2
3
4
|
>>> a = { 'shaw' , 11 , 22 } >>> b = a.copy() >>> print (b) { 11 , 22 , 'shaw' } |
4、返回一个A中存在,B中不存在元素的集合
difference(...)
Return the difference of two or more setsas a new set.
1
2
3
4
|
>>> A = { 'shaw' , 11 , 22 } >>> B = { 11 , "sam" } >>>A.difference(B) { 22 , 'shaw' } |
5、从当前元素中删除和B中相同的元素
difference_update(...)
Remove all elements of another set fromthis set.
1
2
3
4
5
|
>>> A = { 'shaw' , 11 , 22 } >>> B = { 11 , "sam" } >>>A.difference_update(B) >>> print (A) { 22 , 'shaw' } |
6、删除指定元素,如果不存在不会报错
discard(...)
Remove an element from a set if it is amember.
1
2
3
4
5
6
7
|
>>> A = { 'shaw' , 11 , 22 } >>>A.discard( 11 ) >>> print (A) { 22 , 'shaw' } >>>A.discard( 15 ) >>> print (A) { 22 , 'shaw' } |
7、取交集
intersection(...)
Return the intersection of two sets as anew set.
1
2
3
4
|
>>> a = { 'shaw' , 11 , 22 } >>> b = { 'sam' , 22 } >>>a.intersection(b) { 22 } |
8、取交集,并更新到A中
intersection_update(...)
Update a set with the intersection ofitself and another.
1
2
3
4
5
|
>>> A = { 'shaw' , 11 , 22 } >>> B = { 'sam' , 22 } >>>A.intersection_update(B) >>> print (A) { 22 } |
9、判断是否有交集,如果没有交集,返回True,否则返回False
isdisjoint(...)
Return True if two sets have a nullintersection.
1
2
3
4
|
>>> A = { 'shaw' , 11 , 22 } >>> B = { 'sam' , 22 } >>>A.isdisjoint(B) False |
10、判断是否是子序列
issubset(...)
Report whether another set contains thisset.
1
2
3
4
5
6
7
|
>>> A = { 'shaw' , 11 , 22 } >>> B = { 'sam' , 22 } >>>B.issubset(A) False >>> C = { 'shaw' } >>>C.issubset(A) True |
11、判断是否是父序列
issuperset(...)
Report whether this set contains anotherset.
1
2
3
4
|
>>> A = { 'shaw' , 11 , 22 } >>> B = { 22 } >>>A.issuperset(B) True |
12、移除元素,如果集合为空,会报错
pop(...)
Remove and return an arbitrary setelement.
Raises KeyError if the set is empty.
1
2
3
4
5
|
>>> A = { 'shaw' , 11 , 1 , 98 , 3 , 'abc' , 'Shaw' } >>>A.pop() 1 >>> print (A) { 98 , 3 , 'abc' , 11 , 'Shaw' , 'shaw' } |
13、删除指定元素,元素不存在会报错
remove(...)
Remove an element from a set; it must be amember.
If the element is not a member, raise aKeyError.
1
2
3
4
5
6
7
8
|
>>> A = { 'shaw' , 11 , 22 , 1 , 98 , 3 , 'abc' , 'Shaw' } >>>A.remove( '22' ) Traceback (mostrecent call last): File "<input>" , line 1 , in <module> KeyError: '22' >>>A.remove( 22 ) >>> print (A) { 1 , 98 , 3 , 'abc' , 11 , 'Shaw' , 'shaw' } |
14、取并集
union(...)
Return the union of sets as a new set.
1
2
3
4
|
>>> A = { 'shaw' , 11 , 22 , 1 , 98 , 3 , 'abc' , 'Shaw' } >>> B = { 11 , 'sam' } >>>A.union(B) { 'sam' , 1 , 98 , 3 , 'abc' , 11 , 'Shaw' , 22 , 'shaw' } |
15、对称差集
symmetric_difference(...)
Return the symmetric difference of twosets as a new set.
1
2
3
4
|
>>> A = { 'shaw' , 11 , 22 , 1 , 98 , 3 , 'abc' , 'Shaw' } >>> B = { 11 , 'sam' } >>>A.symmetric_difference(B) { 'sam' , 1 , 98 , 3 , 'abc' , 'Shaw' , 22 , 'shaw' } |
16、更新
update(...)
Update a set with the union of itself andothers.
1
2
3
4
5
|
>>> A = { 'shaw' , 11 , 22 , 1 , 98 , 3 , 'abc' , 'Shaw' } >>> B = { 11 , 'sam' } >>>A.update(B) >>> print (A) { 'sam' , 1 , 98 , 3 , 'abc' , 11 , 'Shaw' , 22 , 'shaw' } |
Python 集合方法总结的更多相关文章
- Python集合方法整理(Day9)
#作用:去重,关系运算, #定义: 知识点回顾 可变类型是不可hash类型 不可变类型是可hash类型 #定义集合: 集合:可以包含多个元素,用逗号分割, 集合的元素遵循三个原则: 1:每个元素必须是 ...
- Python 集合set添加删除、交集、并集、集合操作符号
在Python中集合set是基本数据类型的一种,它有可变集合(set)和不可变集合(frozenset)两种.创建集合set.集合set添加.集合删除.交集.并集.差集的操作都是非常实用的方法. 1. ...
- Python 字符串方法详解
Python 字符串方法详解 本文最初发表于赖勇浩(恋花蝶)的博客(http://blog.csdn.net/lanphaday),如蒙转载,敬请保留全文完整,切勿去除本声明和作者信息. ...
- [转]python集合set
Python中集合set是基本数据类型的一种,它有可变集合(set)和不可变集合(frozenset)两种.创建集合set.集合set添加.集合删除.交集.并集.差集的操作都是非常实用的方法. 来源网 ...
- python集合set,frozenset--笔记
<Python3程序开发指南>笔记. python提供了2种内置的集合类型:可变的set类型.固定的frozenset类型. 只有可哈希运算的对象可添加到集合中.可哈希的数据类型:floa ...
- Python魔法方法总结及注意事项
1.何为魔法方法: Python中,一定要区分开函数和方法的含义: 1.函数:类外部定义的,跟类没有直接关系的:形式: def func(*argv): 2.方法:class内部定义的函数(对象的方法 ...
- Python数据类型方法精心整理,不必死记硬背,看看源码一切都有了
Python认为一切皆为对象:比如我们初始化一个list时: li = list('abc') 实际上是实例化了内置模块builtins(python2中为__builtin__模块)中的list类: ...
- python 去重方法
待补充:https://www.cnblogs.com/zknublx/p/6042295.html 一.使用集合直接去重 ids = [1,4,3,3,4,2,3,4,5,6,1]ids = lis ...
- #8 Python数学方法
前言 前几节了解了Python的不同数据类型,有小伙伴会问,不同的数据类型之间是否可以相互转换?肯定是可以的,本篇博文主要记录数字类型的转换,其他类型的相互转换会在下几节记录,Here we go! ...
随机推荐
- meta-analysis 到底是什么个意思类?
背景 科学研究应建立于许多实验结果的重复之上,除了少数新发现外,单个实验结果很难对科学的发展作出极为显著的贡献.所以为了阐明某一主题,在许多科学领域有众多研究者在对不同的实验对象或对同一对象在不同的实 ...
- HDU 1312 Red and Black (dfs)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1312 Red and Black Time Limit: 2000/1000 MS (Java/Oth ...
- [20150925]Linux之文件系统与SHELL
Linux之文件系统与SHELL 文件系统介绍 ext2/ext3/ext4 Ext2是GNU/Linux系统中标准的文件系统.这是Linux中使用最多的一种文件系统,它是专门为Linux设计的,拥有 ...
- 升级vs工程到vs2010(以上)工程找不到OutputDebugStr报错
原因是不同版本的系统宏的不同导致报错,OutputDebugStr,它在vs2005的头文件里定义在vs安装目录下的平台sdk目录下的mmsysytem.h, 而到vs2013下这个文件被放到了系统目 ...
- 通过反射得到object[]数组的类型并且的到此类型所有的字段及字段的值
private string T_Account(object[] list) { StringBuilder code = new StringBuilder(); //得到数据类型 Type t ...
- ios获取CELLID,LAC等信息方法
搞了一个来月的这个东西了,还是没有完全解决问题,下面方法可以获取简单的Cell信息,方法一://CoreTelephony.h//主要就这两个结构体,其他需要的话,自己添加struct CTServe ...
- [转]SQLServer2008日志文件无法收缩处理方法
问题描述 发现有的数据库日志文件太大,无论如何收缩执行几次SQL语句都不行.事务日志达30+G,而且使用常规的截断.收缩方法均无法减小日志物理文件的尺寸,经过一番寻找,终于找到了解决方法. 查 ...
- Maven学习3-使用Maven构建项目
转自:http://www.cnblogs.com/xdp-gacl/p/4240930.html maven作为一个高度自动化构建工具,本身提供了构建项目的功能,下面就来体验一下使用maven构建项 ...
- SQL总结(七)查询实战
SQL总结(七)查询实战 一.场景 给定一个场景,学生选课系统为例,大家很熟悉. 主要关系: 学生(学号.姓名.年龄.性别) 教师(教师ID,教师姓名) 课程(课程ID,课程名称,任教教师ID) 成绩 ...
- ServletContext总结
今天我们学习的是ServletContext的应用. WEB容器在启动时,它会为每个WEB应用程序都创建一个对应的ServletContext对象,它代表当前web应用. ServletConfig对 ...