#集合是無(wú)序的 元素不能重復(fù) 集合是可變的 集合允許進(jìn)行數(shù)學(xué)運(yùn)算
college1 = {"a","b","e"}
print(college1)
college2 = set(["a","b","c","d"])
print(college2)
#使用set創(chuàng)建字符串集合
college3 = set("中華人民共和國(guó)")
print(college3)#可以得到每個(gè)漢字的字符串
#集合的數(shù)學(xué)運(yùn)算 交集 并集
college_in = college1.intersection(college2)
print(college_in) #獲得一個(gè)新的交集
college1.intersection_update(college2)
print(college1) #將新的交集覆蓋之前的內(nèi)容
#并集去重
c4=college1.union(college2)
print(c4)
#差集 兩個(gè)集合之間差異的而部分
c5 = college1.difference(college2)#具有返回值
print(c5)
#集合間的關(guān)系操作
s1 = {1,2,4,5,6}
s2 = {6,5,4,2,1}
print(s1 == s2)
s3 = {1,2,3,4}
s4 = {1,2,3,4,5,6,7}
print(s3.issubset(s4))#判斷是否為子集
print(s4.issuperset(s3))#判斷是否為父級(jí)
s4.isdisjoint(s3)#是否重復(fù)的元素
#集合增加刪除修改操作
for c in college2:
print(c,end="")
print("")
print("a" in college2) #判斷元素是否在集合內(nèi)
#新增元素
college2.add("f")
print(college2)
s=['f','m','p']
college2.update(s)#沒(méi)有返回值
print(college2)
college2.remove('b')#刪除不存在元素時(shí)會(huì)報(bào)錯(cuò)
college2.discard('b')#不存在時(shí)會(huì)直接跳過(guò)
print(college2)
#三種內(nèi)置生成式 [被追加語(yǔ)句 循環(huán) 判斷]|{}
#列表生產(chǎn)式
lst = [i * 10 for i in range(10,20) if i%2 == 0]
print(lst)
#字典生成
lst = ["張山","李四",'王五']
dict1 = {i+1:lst[i] for i in range(0,len(lst)) }
print(dict1)
#集合生成
set1 ={i*j for i in range(1,4) for j in range(1,4) if i == j}
print(set1)
網(wǎng)頁(yè)題目:python集合和三大生成方式
本文URL:http://jinyejixie.com/article28/jjgdcp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供Google、服務(wù)器托管、網(wǎng)站收錄、用戶體驗(yàn)、品牌網(wǎng)站建設(shè)、網(wǎng)站設(shè)計(jì)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)