python set

1 目录

  1. add
  2. clear
  3. copy
  4. difference
  5. difference_update
  6. discard
  7. intersection
  8. intersection_update
  9. isdisjoint
  10. issubset
  11. issuperset
  12. pop
  13. remove
  14. symmetric_difference
  15. symmetric_difference_update
  16. union
  17. update

2 说明

1.add

    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

2.clear

    def clear(self, *args, **kwargs): # real signature unknown

        """ Remove all elements from this set. """

        pass

3.copy

    def copy(self, *args, **kwargs): # real signature unknown

        """ Return a shallow copy of a set. """

        pass

4.difference

    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

5.difference_update

    def difference_update(self, *args, **kwargs): # real signature unknown

        """ Remove all elements of another set from this set. """

        pass

6.discard

    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

7.intersection

    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

8.intersection_update

    def intersection_update(self, *args, **kwargs): # real signature unknown

        """ Update a set with the intersection of itself and another. """

        pass

9.isdisjoint

    def isdisjoint(self, *args, **kwargs): # real signature unknown

        """ Return True if two sets have a null intersection. """

        pass

10.issubset

    def issubset(self, *args, **kwargs): # real signature unknown

        """ Report whether another set contains this set. """

        pass

11.issuperset

    def issuperset(self, *args, **kwargs): # real signature unknown

        """ Report whether this set contains another set. """

        pass

12.pop

    def pop(self, *args, **kwargs): # real signature unknown

        """

        Remove and return an arbitrary set element.

        Raises KeyError if the set is empty.

        """

        pass

13.remove

    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

14.symmetric_difference

    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

15.symmetric_difference_update

    def symmetric_difference_update(self, *args, **kwargs): # real signature unknown

        """ Update a set with the symmetric difference of itself and another. """

        pass

16.union

    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

17.update

    def update(self, *args, **kwargs): # real signature unknown

        """ Update a set with the union of itself and others. """

        pass
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值