python中set的用法:详细源码示例

前端之家收集整理的这篇文章主要介绍了python中set的用法:详细源码示例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
set函数基本用法感兴趣的小伙伴,下面一起跟随编程之家 jb51.cc的小编来看看吧。
python代码如下:
  1. # python中set函数基本用法示例(编程之家 jb51.cc整理)
  2. class set(object):
  3. """
  4. set() -> new empty set object
  5. set(iterable) -> new set object
  6. Build an unordered collection of unique elements.
  7. """
  8. def add(self,*args,**kwargs):
  9. """添加"""
  10. """
  11. Add an element to a set.
  12. This has no effect if the element is already present.
  13. """
  14. pass
  15. def clear(self,**kwargs):
  16. """清除"""
  17. """ Remove all elements from this set. """
  18. pass
  19. def copy(self,**kwargs):
  20. """浅拷贝"""
  21. """ Return a shallow copy of a set. """
  22. pass
  23. def difference(self,**kwargs):
  24. """比较"""
  25. """
  26. Return the difference of two or more sets as a new set.
  27. (i.e. all elements that are in this set but not the others.)
  28. """
  29. pass
  30. def difference_update(self,**kwargs):
  31. """ Remove all elements of another set from this set. """
  32. pass
  33. def discard(self,**kwargs):
  34. """删除"""
  35. """
  36. Remove an element from a set if it is a member.
  37. If the element is not a member,do nothing.
  38. """
  39. pass
  40. def intersection(self,**kwargs):
  41. """
  42. Return the intersection of two sets as a new set.
  43. (i.e. all elements that are in both sets.)
  44. """
  45. pass
  46. def intersection_update(self,**kwargs):
  47. """ Update a set with the intersection of itself and another. """
  48. pass
  49. def isdisjoint(self,**kwargs):
  50. """ Return True if two sets have a null intersection. """
  51. pass
  52. def issubset(self,**kwargs):
  53. """ Report whether another set contains this set. """
  54. pass
  55. def issuperset(self,**kwargs):
  56. """ Report whether this set contains another set. """
  57. pass
  58. def pop(self,**kwargs):
  59. """
  60. Remove and return an arbitrary set element.
  61. Raises KeyError if the set is empty.
  62. """
  63. pass
  64. def remove(self,**kwargs):
  65. """
  66. Remove an element from a set; it must be a member.
  67. If the element is not a member,raise a KeyError.
  68. """
  69. pass
  70. def symmetric_difference(self,**kwargs):
  71. """
  72. Return the symmetric difference of two sets as a new set.
  73. (i.e. all elements that are in exactly one of the sets.)
  74. """
  75. pass
  76. def symmetric_difference_update(self,**kwargs):
  77. """ Update a set with the symmetric difference of itself and another. """
  78. pass
  79. def union(self,**kwargs):
  80. """
  81. Return the union of sets as a new set.
  82. (i.e. all elements that are in either set.)
  83. """
  84. pass
  85. def update(self,**kwargs):
  86. """ Update a set with the union of itself and others. """
  87. pass
  88. def __and__(self,**kwargs):
  89. """ Return self&value. """
  90. pass
  91. def __contains__(self,y):
  92. """ x.__contains__(y) <==> y in x. """
  93. pass
  94. def __eq__(self,**kwargs):
  95. """ Return self==value. """
  96. pass
  97. def __getattribute__(self,**kwargs):
  98. """ Return getattr(self,name). """
  99. pass
  100. def __ge__(self,**kwargs):
  101. """ Return self>=value. """
  102. pass
  103. def __gt__(self,**kwargs):
  104. """ Return self>value. """
  105. pass
  106. def __iand__(self,**kwargs):
  107. """ Return self&=value. """
  108. pass
  109. def __init__(self,seq=()): # known special case of set.__init__
  110. """
  111. set() -> new empty set object
  112. set(iterable) -> new set object
  113. Build an unordered collection of unique elements.
  114. # (copied from class doc)
  115. """
  116. pass
  117. def __ior__(self,**kwargs):
  118. """ Return self|=value. """
  119. pass
  120. def __isub__(self,**kwargs):
  121. """ Return self-=value. """
  122. pass
  123. def __iter__(self,**kwargs):
  124. """ Implement iter(self). """
  125. pass
  126. def __ixor__(self,**kwargs):
  127. """ Return self^=value. """
  128. pass
  129. def __len__(self,**kwargs):
  130. """ Return len(self). """
  131. pass
  132. def __le__(self,**kwargs):
  133. """ Return self<=value. """
  134. pass
  135. def __lt__(self,**kwargs):
  136. """ Return self size of S in memory,in bytes """
  137. pass
  138. def __sub__(self,**kwargs):
  139. """ Return self-value. """
  140. pass
  141. def __xor__(self,**kwargs):
  142. """ Return self^value. """
  143. pass
  144. __hash__ = None
  145. # 来自jb51.cc

猜你在找的Python相关文章