您好,登錄后才能下訂單哦!
set()建立的集合都是可以原處修改的集合,或者說(shuō)可變的,也可以說(shuō)是unhashable。
frozenset() 是一種不變的集合,或者說(shuō)該集合類型是hashable。
說(shuō)明??: frozen 凍結(jié)的
>>> frozen_set
frozenset(['h', 'o', 'n', 'p', 't', 'y'])
>>> frozen_set.add("learn")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'frozenset' object has no attribute 'add'
說(shuō)明??: 根據(jù)報(bào)錯(cuò)信息來(lái)看,frozenset 集合不支持修改!
只有一種關(guān)系,元素要么屬于集合,要么不屬于。
>>> set1
set(['h', 'o', 'n', 'p', 't', 'y'])
>>> set2
set(['i', 'h', 'n', 'p', 't', 'y'])
>>> set1 == set2
False # set1,set2并不相等
如判斷集合A是否是集合B的子集,可以使用A<B,返回true則是子集,否則不是。也可以使用函數(shù)A.issubset(B)判斷。
>>> set1
set(['h', 'o', 'n', 'p', 't', 'y'])
>>> set3
set(['e', 'd', 'h', 'o', 'n', 'p', 't', 'y'])
>>> set1 < set3
True #set1 是 set3 的子集
或者使用issubset()函數(shù)進(jìn)行判斷:
>>> set1.issubset(set3)
True
>>> set3.issubset(set1)
False
>>> set2
set(['t', 'w', 'f'])
>>> set4
set(['a', 'h', 'z', 'o'])
>>> set2|set4 # 使用 “|” 得到就是兩個(gè)集合并集
set(['a', 't', 'w', 'f', 'h', 'z', 'o'])
或者使用union()函數(shù)進(jìn)行判斷:
>>> set2.union(set4)
set(['a', 't', 'w', 'f', 'h', 'z', 'o'])
>>> set5
set(['a', 'd', 't'])
>>> set6
set(['a', 'e', 'd', 't'])
>>> set5 & set6 # 使用“&” 得到兩個(gè)集合的交集
set(['a', 'd', 't'])
或者使用intersection()函數(shù)進(jìn)行判斷:
>>> set5.intersection(set6)
set(['a', 'd', 't'])
>>> set4
set(['a', 'h', 'z', 'o'])
>>> set6
set(['a', 'e', 'd', 't'])
>>> set4 - set6
set(['h', 'z', 'o'])
>>> set6 - set4
set(['e', 'd', 't'])
或者使用difference()函數(shù),如下:
>>> set4.difference(set6)
set(['h', 'z', 'o'])
>>> set6.difference(set4)
set(['e', 'd', 't'])
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。