:::

1-7 set(集合)

集合 Set

集合 Set,沒有順序之別,也沒有重複的內容(重複內容自動略去)

Set 用大括號 {} 表示
資料的集合,沒有順序,沒有重複,且為可改變內容

 

x = set()

x.add('car')

聯集

x = {"a", "b", "c"}

y = {"f", "d", "a"}

z = {"c", "d", "e"}

result = x.union(y, z)

交集

x = {"a", "b", "c"}

y = {"c", "d", "e"}

z = {"f", "g", "c"}

result = x.intersection(y, z)

差集

x = {"apple", "banana", "cherry"}

y = {"google", "microsoft", "apple"}

z = x.difference(y)

 


Google網站翻譯工具列

站內搜尋