您好,登錄后才能下訂單哦!
這篇文章主要介紹了python如何創建集合,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
通過 set 函數創建集合,也可以使用有值的大括號來創建。 如 {1, 2} ,但不能使用空的大括號來創建。(空的大括號是一個空的字典)
示例如下:
test_set_01 = set() # ---> 一個空的集合 test_set_02 = set([1, 2, 3]) # ---> 傳入列表或元組 test_set_03 = {1, 2, 3} # ---> 傳入元素 test_set_04 = {} # ---> 這樣的方式是錯誤的,這是一個空的字典 print(type(test_set_04)) # 執行結果如下: # ---> <class 'dict'>
test_list_01 = ['name', 'age', 'birthday'] test_set_01 = set(test_list_01) print(test_set_01) # 執行結果如下: # >>> {'name', 'age', 'birthday'} 可以看到,傳入的并不是列表,而是列表的元素 test_list_02 = ['name', 'age', 'birthday', 'age'] test_set_02 = set(test_list_02) print(test_set_02) # 執行結果如下: # >>> {'name', 'age', 'birthday'} 可以看到,列表里重復的元素,做了去重的處理 test_list_03 = (1, 2, 3, 1, 5) test_set_03 = set(test_list_03) print(test_set_03) # 執行結果如下: # >>> {1, 2, 3, 5} 可以看到,元組里重復的元素,做了去重的處理 test_set_04 = {['name', 'age', 'birthday']} print(test_set_04) # 執行結果如下: # >>> TypeError: unhashable type: 'list' 集合內不可傳入列表,否則會報錯 test_set_05 = {{'name', 'age', 'birthday'}} print(test_set_05) # 執行結果如下: # >>> TypeError: unhashable type: 'set' 集合內同樣也不可傳入字典 test_set_06 = {'name', 1, 3.14, (666, 888)} print(test_set_06) # 執行結果如下: # >>> {'name', 3.14, 1, (666, 888)} 集合內可以傳入不同的數據類型(列表不可以直接傳入)
感謝你能夠認真閱讀完這篇文章,希望小編分享的“python如何創建集合”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。