• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

Python常用知识点

python 搞代码 4年前 (2022-01-09) 22次浏览 已收录 0个评论

1、Set基本数据类型

a、set集合,是一个无序且不重复的元素集合

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. A中存在,B中不存在         (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 anot<em>本文来源[email protected]搞@^&代*@码)网5</em>her set from this set. 从当前集合中删除和B中相同的元素"""    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. 取交集并更更新到A中 """    pass   def isdisjoint(self, *args, **kwargs): # real signature unknown    """ Return True if two sets have a null intersection. 如果没有交集,返回True,否则返回False"""    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. 对称交集,并更新到a中 """    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

搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:Python常用知识点
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址