python的set结构
生活随笔
收集整理的這篇文章主要介紹了
python的set结构
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
今天說以個很有意思的結(jié)構(gòu),也就是python 中的set結(jié)構(gòu),為什么說set結(jié)構(gòu)是一個很有意思的結(jié)構(gòu),接下來大家看了就知道了。
num={}In [11]: type(num) Out[11]: dictIn [12]: num2={1,2,3,4,5,6,7,8,9}In [13]: type(num2) Out[13]: set有意思的地方之一,當(dāng)對num進行賦值的時候采用{}空花括號進行賦值,類型是字典,但是進行相應(yīng)的數(shù)據(jù)進行賦值的時候,得到的就是set類型的數(shù)據(jù),也就是變成了集合的類型。
In [19]: #在不運用集合特性的情況下怎樣進行數(shù)據(jù)的去重In [21]: num1=[1,2,3,4,5,6,7,8,9,4,5,6,3,2,1,7,8,9]In [24]: temp=[]In [25]: for each in num1:...: if each not in temp:...: temp.append(each)...: In [26]: temp Out[26]: [1, 2, 3, 4, 5, 6, 7, 8, 9]可以看到在沒有運 運用到集合特性的時候想去除數(shù)組中的重復(fù)元素相當(dāng)?shù)穆闊?#xff01;
#在集合中添加元素In [28]: temp.add(10) --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) <ipython-input-28-dfe6d3c81c55> in <module>() ----> 1 temp.add(10)AttributeError: 'list' object has no attribute 'add'In [29]: num1={1,2,3,4,5,6,7,8,9,4,5,6,3,2,1,7,8,9}In [30]: num1 Out[30]: {1, 2, 3, 4, 5, 6, 7, 8, 9}In [31]: num1.add(10)In [32]: num1 Out[32]: {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}In [33]: num.remove(3)In [34]: num1 Out[34]: {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}In [35]: num1.remove(3)In [36]: num14 --------------------------------------------------------------------------- NameError Traceback (most recent call last) <ipython-input-36-8faac97b74a3> in <module>() ----> 1 num14NameError: name 'num14' is not definedIn [37]: num1 Out[37]: {1, 2, 4, 5, 6, 7, 8, 9, 10}總結(jié)
以上是生活随笔為你收集整理的python的set结构的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 作者:吴章生(1980-),男,中国科学
- 下一篇: 【2016年第5期】大数据人才培养的基础