set()建立的集合都是可以原處修改的集合,或者說可變的,也可以說是unhashable。
創(chuàng)新互聯(lián)成都企業(yè)網(wǎng)站建設(shè)服務(wù),提供網(wǎng)站設(shè)計(jì)、成都網(wǎng)站制作網(wǎng)站開發(fā),網(wǎng)站定制,建網(wǎng)站,網(wǎng)站搭建,網(wǎng)站設(shè)計(jì),響應(yīng)式網(wǎng)站,網(wǎng)頁(yè)設(shè)計(jì)師打造企業(yè)風(fēng)格網(wǎng)站,提供周到的售前咨詢和貼心的售后服務(wù)。歡迎咨詢做網(wǎng)站需要多少錢:18982081108
frozenset() 是一種不變的集合,或者說該集合類型是hashable。
說明??: frozen 凍結(jié)的
>>> frozen_set
frozenset(['h', 'o', 'n', 'p', 't', 'y'])
>>> frozen_set.add("learn")
Traceback (most recent call last):
File "", line 1, in
AttributeError: 'frozenset' object has no attribute 'add'
說明??: 根據(jù)報(bào)錯(cuò)信息來看,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>>> 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'])