Python中元組,列表,字典的區別
Python中,有3種內建的資料結構:列表、元組和字典。
1. 列表
list是處理一組有序專案的資料結構,即你可以在一個列表中儲存一個序列的專案。列表中的專案。列表中的專案應該包括在方括號中,這樣python就知道你是在指明一個列表。一旦你建立了一個列表,你就可以新增,刪除,或者是搜尋列表中的專案。由於你可以增加或刪除專案,我們說列表是可變的資料型別,即這種型別是可以被改變的,並且列表是可以巢狀的。
例項:
#coding=utf-8
animalslist=['fox','tiger','rabbit','snake']
print "I don't like these",len(animalslist),'animals...'
for items in animalslist:
print items,
print "\n操作後"
#對列表的操作,新增,刪除,排序
animalslist.append('pig')
del animalslist[0]
animalslist.sort()
for i in range(0,len(animalslist)):
print animalslist[i],
結果:
I don't like these 4 animals...
fox tiger rabbit snake
操作後
pig rabbit snake tiger
2. 元組
元祖和列表十分相似,不過元組是不可變的。即你不能修改元組。元組通過圓括號中用逗號分隔的專案定義。元組通常用在使語句或使用者定義的函式能夠安全的採用一組值的時候,即被使用的元組的值不會改變。元組可以巢狀。
>>> zoo=('wolf','elephant','penguin')
>>> zoo.count('penguin')
1
>>> zoo.index('penguin')
2
>>> zoo.append('pig')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'tuple' object has no attribute 'append'
>>> del zoo[0]
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: 'tuple' object doesn't support item deletion
3. 字典
字典類似於你通過聯絡人名稱查詢地址和聯絡人詳細情況的地址簿,即,我們把鍵(名字)和值(詳細情況)聯絡在一起。注意,鍵必須是唯一的,就像如果有兩個人恰巧同名的話,你無法找到正確的資訊。
鍵值對在字典中以這樣的方式標記:d = {key1 : value1, key2 : value2 }。注意它們的鍵/值對用冒號分割,而各個對用逗號分割,所有這些都包括在花括號中。另外,記住字典中的鍵/值對是沒有順序的。如果你想要一個特定的順 序,那麼你應該在使用前自己對它們排序。
例項:
#coding=utf-8
dict1={'zhang':'張家輝','wang':'王寶強','li':'李冰冰','zhao':'趙薇'}
#字典的操作,新增,刪除,列印
dict1['huang']='黃家駒'
del dict1['zhao']
for firstname,name in dict1.items():
print firstname,name
結果:
li 李冰冰
wang 王寶強
huang 黃家駒
zhang 張家輝
相關文章
- Python中列表、元組、字典有何區別?Python學習!Python
- Python資料型別(數字,字串,[列表],(元組),{字典:字典值},{列表,列表2})Python資料型別字串
- 三、python的資料型別 列表、元組、字典Python資料型別
- Python列表、元組、集合、字典的區別是什麼?入門知識!Python
- Python列表、元組、字典使用Python
- python_列表——元組——字典——集合Python
- python如何返回元組,列表或字典的?Python
- Python之列表與元組的區別詳解Python
- python中的列表和元組有什麼區別Python
- Python中字典和json的區別!PythonJSON
- Python學習筆記8——列表、字典、元組Python筆記
- Python 列表、元組、字典及集合操作詳解Python
- 字串形式的列表,字典轉列表,字典字串
- 2.列表_元組_字典_集合
- Python 列表與字典 排序 的奇妙之旅Python排序
- python3 筆記14.列表元組字典支援的函式Python筆記函式
- python資料型別 列表+元組Python資料型別
- Python的元組()與字典{}Python
- Python的元組()與字典 { }Python
- Python陣列和列表的區別?Python學習教程Python陣列
- 玩轉python字典與列表(上)Python
- 玩轉python字典與列表(中)Python
- 玩轉python字典與列表(下)Python
- python 字典和列表巢狀用法Python巢狀
- 【Python_029】內建資料結構,列表 | 字典 | 集合 | 元組Python資料結構
- 字典和json的區別是什麼?Python學習JSONPython
- python中列表、字典和字串的互相轉換Python字串
- python 列表轉為字典的兩個小方法Python
- Python:字典列表字串方法測試Python字串
- Python練習題篇(列表、字典、元祖)Python
- python基礎之序列型別的方法——列表&元組Python型別
- Python的集合與列表有什麼區別?Python學習教程Python
- Python3中列表方法append()和extend()的區別PythonAPP
- Python中列表遍歷使用range和enumerate的區別Python
- 列表和字典的操作
- Python元組和字典的拆包Python
- python基礎(四)----列表、字典練習題Python
- Python開發中字典和json有什麼區別?PythonJSON
- Python基礎:高階變數型別【圖文詳解版(回顧資料型別、列表,元組,字典,字串,公共方法)】Python變數資料型別字串