python 集合操作

python 集合操作 在這裏插入代碼片 #集合 #intersection 交集 #difference 差集 #union 並集 #issubset 檢查一個集合是否爲擰一個子集 #issuperset 檢查一個集合是否爲d另一個的超集 a = {1,2,1,3,4,5} b = {4,5,6,7,8} e = a.intersection(b) print('交集:{}'.format(e)
相關文章
相關標籤/搜索