當前位置:成語大全網 - 新華字典 - Python 簡明教程 ---13,Python 集合

Python 簡明教程 ---13,Python 集合

目錄

前幾節我們已經介紹了Python 中的 列表list , 元組tuple 和 字典dict ,本節來介紹Python 中的最後壹種數據結構—— 集合set 。

Python 中的 set 與 dict 很像,唯壹的不同是, dict 中保存的是 鍵值對 ,而 set 中只保存 鍵 ,沒有 值 。

Python 集合 有如下特點:

Python 集合的聲明有兩種方式:

創建 空集合 時,只能用 set() ,而不能用 {} :

創建 非空集合 時,可以用 set() ,也可以用 {} :

由於集合中的元素是唯壹的,如果初始化時的 可叠代 數據中有重復的元素,則會自動刪去重復的元素:

使用 len() 函數可以查看集合中元素的個數:

由於Python 集合中的元素的是無序的,所以可不能使用 下標 的方式來訪問集合中的單個元素。

我們可以使用 for 循環 來遍歷集合中的所有元素:

我們可以對兩個集合進行如下運算:

交集與並集

in 運算

使用 dir(set) 查看集合支持的所有方法:

下面壹壹介紹這些 非魔法方法 ,***17 個。

1. add 方法

由於集合中的元素是唯壹的,向集合中添加元素時有兩種情況:

示例:

2. remove 方法

示例:

3. discard 方法

示例:

4. pop 方法

示例:

5. union 方法

示例:

6. update 方法

示例:

7. clear 方法

示例:

8. copy 方法

示例:

9. difference 方法

示例:

10. difference_update 方法

示例:

11. intersection 方法

示例:

12. intersection_update 方法

示例:

13. isdisjoint 方法

示例:

14. issubset 方法

示例:

15. issuperset 方法

示例:

16. symmetric_difference 方法

示例:

17. symmetric_difference_update 方法

示例:

(完。)

推薦閱讀:

Python 簡明教程 --- 8,Python 字符串函數

Python 簡明教程 --- 9,Python 編碼

Python 簡明教程 ---10,Python 列表

Python 簡明教程 ---11,Python 元組

Python 簡明教程 ---12,Python 字典