标签:rabl 建立 拷贝 signature 清除 its another key 元素
---恢复内容开始---
集合
建立 set() ={},集合没有顺序,由不可改变的数字 ,字符串,元组构成
元组的方法
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 | classset(object):    """    set() -> new empty set object    set(iterable) -> new set object        Build an unordered collection of unique elements.    """    defadd(self, *args, **kwargs): # real signature unknown        """        Add an element to a set,添加元素                This has no effect if the element is already present.        """        pass    defclear(self, *args, **kwargs): # real signature unknown        """ Remove all elements from this set. 清除内容"""        pass    defcopy(self, *args, **kwargs): # real signature unknown        """ Return a shallow copy of a set. 浅拷贝  """        pass    defdifference(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    defdifference_update(self, *args, **kwargs): # real signature unknown        """ Remove all elements of another set from this set.  从当前集合中删除和B中相同的元素"""        pass    defdiscard(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    defintersection(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    defintersection_update(self, *args, **kwargs): # real signature unknown        """ Update a set with the intersection of itself and another.  取交集并更更新到A中 """        pass    defisdisjoint(self, *args, **kwargs): # real signature unknown        """ Return True if two sets have a null intersection.  如果没有交集,返回True,否则返回False"""        pass    defissubset(self, *args, **kwargs): # real signature unknown        """ Report whether another set contains this set.  是否是子序列"""        pass    defissuperset(self, *args, **kwargs): # real signature unknown        """ Report whether this set contains another set. 是否是父序列"""        pass    defpop(self, *args, **kwargs): # real signature unknown        """        Remove and return an arbitrary set element.        Raises KeyError if the set is empty. 移除元素        """        pass    defremove(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    defsymmetric_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    defsymmetric_difference_update(self, *args, **kwargs): # real signature unknown        """ Update a set with the symmetric difference of itself and another. 对称差集,并更新到a中 """        pass    defunion(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    defupdate(self, *args, **kwargs): # real signature unknown        """ Update a set with the union of itself and others. 更新 """        pass | 
 
标签:rabl 建立 拷贝 signature 清除 its another key 元素
原文地址:http://www.cnblogs.com/honglingjin/p/6120603.html