12.5、python基础数据类型(set集合)

简介: 基础数据类型(set集合)认识集合  由一个或多个确定的元素所构成的整体叫做集合。  集合中的元素有三个特征:    1.确定性(集合中的元素必须是确定的)    2.互异性(集合中的元素互不相同。

基础数据类型(set集合)

认识集合

  由一个或多个确定的元素所构成的整体叫做集合。

  集合中的元素有三个特征:

    1.确定性(集合中的元素必须是确定的)

    2.互异性(集合中的元素互不相同。例如:集合A={1,a},则a不能等于1)

    3.无序性(集合中的元素没有先后之分),如集合{3,4,5}和{3,5,4}算作同一个集合。

  *集合概念存在的目的是将不同的值存放到一起,不同的集合间用来做关系运算,无需纠结于集合中某个值

集合的定义

  s = {1,2,3,1}

#定义可变集合>>> set_test=set('hello')

>>> set_test

{'l', 'o', 'e', 'h'}#改为不可变集合frozenset>>> f_set_test=frozenset(set_test)

>>> f_set_test

frozenset({'l', 'e', 'h', 'o'})

集合的常用操作及关系运算

  元素的增加

  单个元素的增加 : add(),add的作用类似列表中的append

  对序列的增加 : update(),而update类似extend方法,update方法可以支持同时传入多个参数:

>>> a={1,2}

>>> a.update([3,4],[1,2,7])

>>> a

{1, 2, 3, 4, 7}

>>> a.update("hello")

>>> a

{1, 2, 3, 4, 7, 'h', 'e', 'l', 'o'}

>>> a.add("hello")

>>> a

{1, 2, 3, 4, 'hello', 7, 'h', 'e', 'l', 'o'}

  元素的删除

  集合删除单个元素有两种方法:

    元素不在原集合中时:

      set.discard(x)不会抛出异常

      set.remove(x)会抛出KeyError错误

>>> a={1,2,3,4}

>>> a.discard(1)

>>> a

{2, 3, 4}

>>> a.discard(1)

>>> a

{2, 3, 4}

>>> a.remove(1)

Traceback (most recent call last):

  File "<input>", line 1, in <module>

KeyError: 1

  pop():由于集合是无序的,pop返回的结果不能确定,且当集合为空时调用pop会抛出KeyError错误,

  clear():清空集合

>>> a={3,"a",2.1,1}

>>> a.pop()

1

>>> a.pop()

3

>>> a.clear()

>>> a

set()

>>> a.pop()

Traceback (most recent call last):

  File "<input>", line 1, in <module>

KeyError: 'pop from an empty set'

  集合操作


img_b6015fdc0679f768d95104ffd6fd18ff.jpe

    |,|=:合集

a = {1,2,3}

b = {2,3,4,5}print(a.union(b))print(a|b)

    &.&=:交集

a = {1,2,3}

b = {2,3,4,5}print(a.intersection(b))print(a&b)

    -,-=:差集

a = {1,2,3}

b = {2,3,4,5}print(a.difference(b))print(a-b) 

    ^,^=:对称差集

a = {1,2,3}

b = {2,3,4,5}print(a.symmetric_difference(b))print(a^b)


  包含关系

    in,not in:判断某元素是否在集合内

    ==,!=:判断两个集合是否相等

    两个集合之间一般有三种关系,相交、包含、不相交。在Python中分别用下面的方法判断:

set.isdisjoint(s):判断两个集合是不是不相交

set.issuperset(s):判断集合是不是包含其他集合,等同于a>=b

set.issubset(s):判断集合是不是被其他集合包含,等同于a<=b

集合的工厂函数

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        """

        相当于s1-s2


        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功能相同,删除元素不存在时不会抛出异常


        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        """

        相当于s1&s2


        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        """

        相当于s1<=s2


        Report whether another set contains this set. """        pass    def issuperset(self, *args, **kwargs): # real signature unknown        """

        相当于s1>=s2


        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        """

        相当于s1^s2


        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        """

        相当于s1|s2


        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

目录
相关文章
|
15天前
|
安全 网络安全 文件存储
思科设备巡检命令Python脚本大集合
【10月更文挑战第18天】
48 1
思科设备巡检命令Python脚本大集合
|
16天前
|
存储 NoSQL 关系型数据库
Redis 集合(Set)
10月更文挑战第17天
28 5
|
17天前
|
算法 Java 数据处理
从HashSet到TreeSet,Java集合框架中的Set接口及其实现类以其“不重复性”要求,彻底改变了处理唯一性数据的方式。
从HashSet到TreeSet,Java集合框架中的Set接口及其实现类以其“不重复性”要求,彻底改变了处理唯一性数据的方式。HashSet基于哈希表实现,提供高效的元素操作;TreeSet则通过红黑树实现元素的自然排序,适合需要有序访问的场景。本文通过示例代码详细介绍了两者的特性和应用场景。
33 6
|
17天前
|
存储 Java 数据处理
Java Set接口凭借其独特的“不重复”特性,在集合框架中占据重要地位
【10月更文挑战第16天】Java Set接口凭借其独特的“不重复”特性,在集合框架中占据重要地位。本文通过快速去重和高效查找两个案例,展示了Set如何简化数据处理流程,提升代码效率。使用HashSet可轻松实现数据去重,而contains方法则提供了快速查找的功能,彰显了Set在处理大量数据时的优势。
27 2
|
2天前
|
存储 Java
判断一个元素是否在 Java 中的 Set 集合中
【10月更文挑战第30天】使用`contains()`方法可以方便快捷地判断一个元素是否在Java中的`Set`集合中,但对于自定义对象,需要注意重写`equals()`方法以确保正确的判断结果,同时根据具体的性能需求选择合适的`Set`实现类。
|
2天前
|
存储 Java 开发者
在 Java 中,如何遍历一个 Set 集合?
【10月更文挑战第30天】开发者可以根据具体的需求和代码风格选择合适的遍历方式。增强for循环简洁直观,适用于大多数简单的遍历场景;迭代器则更加灵活,可在遍历过程中进行更多复杂的操作;而Lambda表达式和`forEach`方法则提供了一种更简洁的函数式编程风格的遍历方式。
|
2天前
|
Java 开发者
|
17天前
|
存储 Java 数据处理
Set 是 Java 集合框架中的一个接口,不包含重复元素且不保证元素顺序。
【10月更文挑战第16天】Java Set:无序之美,不重复之魅!Set 是 Java 集合框架中的一个接口,不包含重复元素且不保证元素顺序。通过 hashCode() 和 equals() 方法实现唯一性,适用于需要唯一性约束的数据处理。示例代码展示了如何使用 HashSet 添加和遍历元素,体现了 Set 的高效性和简洁性。
22 4
|
19天前
|
存储 Java 数据处理
Set 是 Java 集合框架中的一个接口,不包含重复元素且不保证元素顺序。
Java Set:无序之美,不重复之魅!Set 是 Java 集合框架中的一个接口,不包含重复元素且不保证元素顺序。它通过 hashCode() 和 equals() 方法确保元素唯一性,适用于需要唯一性约束的数据处理。示例代码展示了如何使用 HashSet 实现这一特性。
22 5
|
17天前
|
Java 开发者
在Java集合世界中,Set以其独特的特性脱颖而出,专门应对重复元素
在Java集合世界中,Set以其独特的特性脱颖而出,专门应对重复元素。通过哈希表和红黑树两种模式,Set能够高效地识别并拒绝重复元素的入侵,确保集合的纯净。无论是HashSet还是TreeSet,都能在不同的场景下发挥出色的表现,成为开发者手中的利器。
24 2