1.集合的创建

集合是一个无序不重复元素的集。基本功能包括关系测试和消除重复元素。

创建集合:大括号或 set() 函数可以用来创建集合。注意:想要创建空集合,你必须使用 set() 而不是 {},后者用于创建空字典。大括号也不可以创建元素含有字典与列表的集合。

 a={'a','b','c','d'}
b=set('abcdefabcd')
c=set({'a':1,'b':2})
d=set(['a','b','c','a'])
print(a,type(a))
print(b,type(b))
print(c,type(c))
print(d,type(d)) #运行结果
{'c', 'd', 'b', 'a'} <class 'set'>
{'f', 'e', 'b', 'c', 'd', 'a'} <class 'set'>
{'b', 'a'} <class 'set'>
{'c', 'b', 'a'} <class 'set'>

demo

2.集合的功能属性

 class set(object):
"""
set() -> new empty set object
set(iterable) -> new set object Build an unordered collection of unique elements.
"""
def add(self, *args, **kwargs): # real signature unknown
"""
Add an element to a set. This has no effect if the element is already present.
"""
pass def clear(self, *args, **kwargs): # real signature unknown
""" Remove all elements from this set. """
pass def copy(self, *args, **kwargs): # real signature unknown
""" Return a shallow copy of a set. """
pass def difference(self, *args, **kwargs): # real signature unknown
"""
Return the difference of two or more sets as a new set. (i.e. all elements that are in this set but not the others.)
"""
pass def difference_update(self, *args, **kwargs): # real signature unknown
""" Remove all elements of another set from this set. """
pass def discard(self, *args, **kwargs): # real signature unknown
"""
Remove an element from a set if it is a member. If the element is not a member, do nothing.
"""
pass def intersection(self, *args, **kwargs): # real signature unknown
"""
Return the intersection of two sets as a new set. (i.e. all elements that are in both sets.)
"""
pass def intersection_update(self, *args, **kwargs): # real signature unknown
""" Update a set with the intersection of itself and another. """
pass def isdisjoint(self, *args, **kwargs): # real signature unknown
""" Return True if two sets have a null intersection. """
pass def issubset(self, *args, **kwargs): # real signature unknown
""" Report whether another set contains this set. """
pass def issuperset(self, *args, **kwargs): # real signature unknown
""" Report whether this set contains another set. """
pass def pop(self, *args, **kwargs): # real signature unknown
"""
Remove and return an arbitrary set element.
Raises KeyError if the set is empty.
"""
pass def remove(self, *args, **kwargs): # real signature unknown
"""
Remove an element from a set; it must be a member. If the element is not a member, raise a KeyError.
"""
pass def symmetric_difference(self, *args, **kwargs): # real signature unknown
"""
Return the symmetric difference of two sets as a new set. (i.e. all elements that are in exactly one of the sets.)
"""
pass def symmetric_difference_update(self, *args, **kwargs): # real signature unknown
""" Update a set with the symmetric difference of itself and another. """
pass def union(self, *args, **kwargs): # real signature unknown
"""
Return the union of sets as a new set. (i.e. all elements that are in either set.)
"""
pass def update(self, *args, **kwargs): # real signature unknown
""" Update a set with the union of itself and others. """
pass def __and__(self, *args, **kwargs): # real signature unknown
""" Return self&value. """
pass def __contains__(self, y): # real signature unknown; restored from __doc__
""" x.__contains__(y) <==> y in x. """
pass def __eq__(self, *args, **kwargs): # real signature unknown
""" Return self==value. """
pass def __getattribute__(self, *args, **kwargs): # real signature unknown
""" Return getattr(self, name). """
pass def __ge__(self, *args, **kwargs): # real signature unknown
""" Return self>=value. """
pass def __gt__(self, *args, **kwargs): # real signature unknown
""" Return self>value. """
pass def __iand__(self, *args, **kwargs): # real signature unknown
""" Return self&=value. """
pass def __init__(self, seq=()): # known special case of set.__init__
"""
set() -> new empty set object
set(iterable) -> new set object Build an unordered collection of unique elements.
# (copied from class doc)
"""
pass def __ior__(self, *args, **kwargs): # real signature unknown
""" Return self|=value. """
pass def __isub__(self, *args, **kwargs): # real signature unknown
""" Return self-=value. """
pass def __iter__(self, *args, **kwargs): # real signature unknown
""" Implement iter(self). """
pass def __ixor__(self, *args, **kwargs): # real signature unknown
""" Return self^=value. """
pass def __len__(self, *args, **kwargs): # real signature unknown
""" Return len(self). """
pass def __le__(self, *args, **kwargs): # real signature unknown
""" Return self<=value. """
pass def __lt__(self, *args, **kwargs): # real signature unknown
""" Return self<value. """
pass @staticmethod # known case of __new__
def __new__(*args, **kwargs): # real signature unknown
""" Create and return a new object. See help(type) for accurate signature. """
pass def __ne__(self, *args, **kwargs): # real signature unknown
""" Return self!=value. """
pass def __or__(self, *args, **kwargs): # real signature unknown
""" Return self|value. """
pass def __rand__(self, *args, **kwargs): # real signature unknown
""" Return value&self. """
pass def __reduce__(self, *args, **kwargs): # real signature unknown
""" Return state information for pickling. """
pass def __repr__(self, *args, **kwargs): # real signature unknown
""" Return repr(self). """
pass def __ror__(self, *args, **kwargs): # real signature unknown
""" Return value|self. """
pass def __rsub__(self, *args, **kwargs): # real signature unknown
""" Return value-self. """
pass def __rxor__(self, *args, **kwargs): # real signature unknown
""" Return value^self. """
pass def __sizeof__(self): # real signature unknown; restored from __doc__
""" S.__sizeof__() -> size of S in memory, in bytes """
pass def __sub__(self, *args, **kwargs): # real signature unknown
""" Return self-value. """
pass def __xor__(self, *args, **kwargs): # real signature unknown
""" Return self^value. """
pass __hash__ = None

set

3.集合的部分功能属性介绍

1)add(self, *args, **kwargs):

在集合里添加一个元素,不生成新的集合。

a={'a','b','c','d'}
b=a.add('e')
c=a.add('a')
print(a,type(a))
print(b,type(b))
print(c,type(c)) #运行结果
{'d', 'c', 'e', 'b', 'a'} <class 'set'>
None <class 'NoneType'>
None <class 'NoneType'>

demo

2)clear(self, *args, **kwargs):

清空集合里面的元素,不生成新的集合。

 a={'a','b','c','d'}
b=a.clear()
print(a,type(a))
print(b,type(b)) #运行结果
set() <class 'set'>
None <class 'NoneType'>

demo

3)copy(self, *args, **kwargs):

浅拷贝集合,返回一个新集合。

 a={1,(9,2),3}
b=a.copy()
print(a,id(a))
print(b,id(b)) #赋值
c={1,2,3,4}
d=c
print(c,id(c))
print(d,id(d)) #运行结果
{(9, 2), 1, 3} 13058696
{(9, 2), 1, 3} 13058576
{1, 2, 3, 4} 13059296
{1, 2, 3, 4} 13059296

demo

4)difference(self, *args, **kwargs):

与其他一个集合或多个集合对比,返回一个与其他集合不一样元素的集合。

 a={'a','b','c','d'}
b=a.difference({'a',},{'b'})
print(a)
print(b,type(b)) #运行结果
{'c', 'b', 'a', 'd'}
{'c', 'd'} <class 'set'>

demo

5)difference_update(self, *args, **kwargs):

与其他一个集合或多个集合对比,删除集合与其他集合一样的元素,不返回新集合。

 a={'a','b','c','d'}
b=a.difference_update({'a',},{'b'})
print(a)
print(b,type(b)) #运行结果
{'c', 'd'}
None <class 'NoneType'>

demo

6)discard(self, *args, **kwargs):

删除集合中的某个元素,如果这个元素没有在集合中,不做操作,不返回新集合。

 a={'a','b','c','d'}
b=a.discard('a')
print(a)
print(b,type(b)) #运行结果
{'d', 'c', 'b'}
None <class 'NoneType'>

demo

7)intersection(self, *args, **kwargs):

返回一个和其他集合共同有的元素的集合。

 a={'a','b','c','d'}
b=a.intersection({'a','e'},{'a','f'})
print(a)
print(b,type(b)) #运行结果
{'d', 'b', 'c', 'a'}
{'a'} <class 'set'>

demo

8)intersection_update(self, *args, **kwargs):

与其他一个集合或多个集合对比,删除集合中与其他集合不共有的元素,不返回新集合。

 a={'a','b','c','d'}
b=a.intersection_update({'a','e'},{'a','f'})
print(a)
print(b,type(b)) #运行结果
{'a'}
None <class 'NoneType'>

demo

9)isdisjoint(self, *args, **kwargs):

对比两个集合,有空交集则返回True,没有则返回False。

 a={'a','b','c','d','    '}       #空元素用tab键输入
b=a.isdisjoint({'a','e'})
c=a.isdisjoint({' ','f'})
print(a)
print(b,type(b))
print(c,type(c)) #运行结果
{'a', 'b', ' ', 'c', 'd'}
False <class 'bool'>
True <class 'bool'>

demo

10)issubset(self, *args, **kwargs):

判断集合的包含关系,其他集合如果包含原集合则返回True,不包含则返回Fasle。

 a={'a','b','c','d',}
b={'a','b','c','d','f'}
c=a.issubset(b)
d=a.issubset({'a'})
print(a)
print(b)
print(c,type(c))
print(d,type(d)) #运行结果
{'d', 'a', 'b', 'c'}
{'f', 'b', 'a', 'd', 'c'}
True <class 'bool'>
False <class 'bool'>

demo

11)issuperset(self, *args, **kwargs):

判断集合的包含关系,原集合如果包含其他集合则返回True,不包含则返回Fasle。

 a={'a','b','c','d',}
b={'a','b','c','d','f'}
c=a.issuperset(b)
d=a.issuperset({'a'})
print(a)
print(b)
print(c,type(c))
print(d,type(d)) #运行结果
{'a', 'b', 'c', 'd'}
{'a', 'b', 'd', 'c', 'f'}
False <class 'bool'>
True <class 'bool'>

demo

12)pop(self, *args, **kwargs):

从集合中取出一个元素,如果集合为空,则报TypeError错误。

 a={'a','b','c','d',}
b=a.pop()
print(a)
print(b,type(b)) #运行结果
{'c', 'b', 'a'}
d <class 'str'> #因为集合是无序的,所以取出的值是随机的

demo

13)remove(self, *args, **kwargs):

移除集合中的一个元素,这个元素必须在集合中,如果不在,则报TypeError错误。

 a={'a','b','c','d',}
b=a.remove('b')
print(a)
print(b,type(b)) #运行结果
{'c', 'a', 'd'}
None <class 'NoneType'>

demo

14)union(self, *args, **kwargs):

两个集合拼接返回一个新集合。

 a={'a','b','c','d',}
b=a.union('b')
c=a.union({'e','f'})
print(a)
print(b,type(b))
print(c,type(c)) #运行结果
{'b', 'd', 'c', 'a'}
{'b', 'd', 'c', 'a'} <class 'set'>
{'d', 'c', 'e', 'b', 'f', 'a'} <class 'set'>

demo

15)update(self, *args, **kwargs):

更新集合,添加集合中没有的新元素,不返回新集合。

 a={'a','b','c','d',}
b=a.update('b')
c=a.update({'e','f'})
print(a)
print(b,type(b))
print(c,type(c)) #运行结果
{'a', 'c', 'b', 'e', 'd', 'f'}
None <class 'NoneType'>
None <class 'NoneType'>

demo

16)__and__(self, *args, **kwargs):

和intersection()一样,返回一个和其他集合共同有的元素的集合,但是前者可以和多个集合一起对比,后者只可以和一个集合对比。

 a={'a','b','c','d',}
b=a.__and__('b')
c=a.__and__({'a','f'})
print(a)
print(b,type(b))
print(c,type(c)) #运行结果
{'a', 'b', 'd', 'c'}
NotImplemented <class 'NotImplementedType'>
{'a'} <class 'set'>

demo

17)__contains__(self, y):

判断集合中有没有包含某个元素或集合,包含则返回True,不包含则返回Fasle。

 a={'a','b','c','d',}
b=a.__contains__('b')
c=a.__contains__({'a','f'})
print(a)
print(b,type(b))
print(c,type(c)) #运行结果
{'a', 'd', 'c', 'b'}
True <class 'bool'>
False <class 'bool'>

demo

最新文章

  1. Linux添加用户(user)到用户组(group)
  2. InfluxDB学习之InfluxDB的基本概念
  3. [BZOJ3156]防御准备(斜率优化DP)
  4. CentOs6.5下独立安装mysql篇
  5. javaweb回顾第七篇jsp
  6. 深入学习JavaScript(一)
  7. sealed修饰符
  8. 微信/QQ机器人的实现
  9. P3381: [Usaco2004 Open]Cave Cows 2 洞穴里的牛之二
  10. 面向对象的程序设计(二)理解各种方法和属性typeof、instanceof、constructor、prototype、__proto__、isPrototypeOf、hasOwnProperty
  11. VMware复制Centos6虚拟机要改的地方
  12. CSS自学笔记(7):CSS定位
  13. windows文件快速搜索软件推荐
  14. C#基础知识回顾--线程传参
  15. PHP_保留两位小数并且四舍五入_保留两位小数并且不四舍五入
  16. IntelliJ IDEA(十) :常用操作
  17. 第四天 Java语言基础
  18. iOS开发基础篇-transform属性
  19. python--jianja2
  20. Go语言总结

热门文章

  1. Quick BI功能篇之(一):20分钟入门
  2. java.lang.InstantiationException: com.lch.commder.entity.Car 已解决
  3. Java中JNI的使用详解第六篇:C/C++中的引用类型和Id的缓存
  4. 几道51nod上据说是提高组难度的dp题
  5. NX二次开发-UFUN重命名图纸页UF_DRAW_rename_drawing
  6. gulp 安装与使用
  7. 其它课程中的python---3、numpy总结(非常全)
  8. faster-rcnn代码阅读-proposal层
  9. 微信-小程序-开发文档-服务端-接口调用凭证:auth.getAccessToken
  10. delphi基础篇之项目文件