1. 程式人生 > >【python小甲魚6】集合

【python小甲魚6】集合

用{}括起來的,沒有對映關係的,就是集合。

集合的特點:

1.元素唯一。

num = {4,1,2,3,4,2,4,2}
print(num)
#執行結果為{1, 2, 3, 4}

2.無序。

eg:num[2]就會報錯。

建立集合:

1.直接把一堆數用{}括起來。

2.工廠函式set().

3.建立不可變集合frozenset().