python 集合
集合可以將序列(包括列表,元組,字串,字典的鍵)中的重複元素去除,常用於集合的運算。
>>>aSet=set([1,2,2,3])
>>>aSet
set([1, 2, 3])
常見的運算有
>>> aSet=set([1,2,3])
>>> bSet=set([3,4])
>>> aSet&bSet
set([3])
>>> aSet|bSet
set([1, 2, 3, 4])
>>> aSet-bSet
set([1, 2])
>>> aSet^bSet
set([1, 2, 4])
set是無序,可變的序列。可以有append,remove等方法。
相關文章
- Python庫集合Python
- Python set(集合)Python
- Python集合淺談Python
- Python3 集合Python
- python-集合setPython
- Python集合操作總結Python
- python集合中有哪些方法Python
- Python入門(九):集合Python
- Python基礎(八): 集合Python
- Python集合使用詳解Python
- python 集合型別 setPython型別
- Python&Redis 無序集合set、有序集合zset操作PythonRedis
- Python中的不可變集合Python
- Python集合要怎麼用Python
- Python學習之set集合Python
- (python)資料結構—集合Python資料結構
- python中的集合與字典Python
- python3常用方法集合Python
- Python順序集合之 tuplePython
- Python順序集合之 ListPython
- 關於Python的集合setPython
- Python基礎知識之集合Python
- Python集合有什麼特點Python
- python_列表——元組——字典——集合Python
- 基於python的集合運算Python
- Python的字典、集合和函式Python函式
- python的資料型別(集合)Python資料型別
- PyProjects:Python專案大集合ProjectPython
- Python工程師面試題集合Python工程師面試題
- Python學習之路day3-集合Python
- python組合資料型別(集合)Python資料型別
- 豬行天下之Python基礎——3.4 集合Python
- Python學習之路22-字典和集合Python
- python-資料型別之set集合Python資料型別
- 3-python 元組 字典 集合的操作Python
- 學習python的基礎語法集合Python
- Python之set集合的相關介紹Python
- Python - 基礎資料型別 set 集合Python資料型別