您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“python如何實現集合的增刪改操作”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“python如何實現集合的增刪改操作”這篇文章吧。
add 函數的功能:用于集合中添加一個元素,如果集合中已經存在該被添加的元素,則該函數不執行。
add 函數的用法:set.add(item) ;item 為要被添加到集合的元素;無返回值。
示例如下:
test_set = {'name', 'age', 'birthday'} test_set.add('sex') test_set.add('name') print(test_set) # 執行結果如下: # >>> {'sex', 'birthday', 'age', 'name'} 已存在的 'name' 元素,未再次執行添加
update 函數的功能:在集合中加入一個新的集合(或者列表、元組、字符串),如果新集合內的元素在原集合中存在則無視。
update 函數的用法:set.update(iterable) ;iterable為集合、列表、元組、字符串;無返回值,直接作用于原集合。
示例如下:
test_set = set() test_list = ['name', 'age', 'birthday'] test_set.update(test_list) print(test_set) # 執行結果如下: # >>> {'birthday', 'age', 'name'} 列表的成員(元素)被添加進集合 test_tuple = (666, 888) test_set.update(test_tuple) print(test_set) # 執行結果如下: # >>> {'name', 'birthday', 'age', 888, 666} 元組的成員(元素)被添加進集合 name = 'Neo' test_set.update(name) print(test_set) # 執行結果如下: # >>> {'name', 'N', 'birthday', 'e', 'age', 'o', 888, 666} 字符串是每個字符都作為元素被添加進集合的
remove函數的功能:將集合中某個元素刪除,如果該元素不存在則會報錯。
remove函數的用法:set.remove(item) ;item 為當前集合中的一個元素;無返回值,直接作用于原集合。
需要注意的是,item 為集合中的某一個元素,而不是索引。
示例如下:
test_set = set() test_list = ['name', 'age', 'birthday'] test_set.update(test_list) print(test_set) # 執行結果如下: # >>> {'name', 'birthday', 'age'} test_set.remove('age') print(test_set) # 執行結果如下: # >>> {'birthday', 'name'} test_set_01 = set() test_set.remove('test') print(test_set_01) # 執行結果如下: # >>> KeyError: 'test' 'test'元素不存在則報錯。
clear 函數的功能:清空當前集合中所有的元素
clear 函數的用法:set.clear() ;無返回值,直接作用于原集合。
示例如下:
test_set = set() test_list = ['name', 'age', 'birthday'] test_set.clear() print(test_set) # 執行結果如下: # >>> set()
del 的功能:直接刪除 (作用于集合,無法通過索引刪除)
示例如下:
test_set = set() test_list = ['name', 'age', 'birthday'] test_set.update(test_list) print(test_set) # 執行結果如下: # >>> {'birthday', 'age', 'name'} del test_set print(test_set) # 執行結果如下: # >>> NameError: name 'test_set' is not defined.
以上是“python如何實現集合的增刪改操作”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。