Python列表、元組、字典使用
python中,有3種內建的資料結構:列表、元組和字典。
1.列表
list是處理一組有序專案的資料結構,即你可以在一個列表中儲存一個序列的專案。列表中的專案。列表中的專案應該包括在方括號中,這樣python就知道你是在指明一個列表。一旦你建立了一個列表,你就可以新增,刪除,或者是搜尋列表中的專案。由於你可以增加或刪除專案,我們說列表是可變的資料型別,即這種型別是可以被改變的,並且列表是可以巢狀的。
例項:
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 “”, line 1, in
AttributeError: ‘tuple’ object has no attribute ‘append’
del zoo[0]
Traceback (most recent call last):
File “”, line 1, in
TypeError: ‘tuple’ object doesn’t support item deletion
3 字典
字典類似於你通過聯絡人名稱查詢地址和聯絡人詳細情況的地址簿,即,我們把鍵(名字)和值(詳細情況)聯絡在一起。注意,鍵必須是唯一的,就像如果有兩個人恰巧同名的話,你無法找到正確的資訊。
鍵值對在字典中以這樣的方式標記:d = {key1 : value1, key2 : value2 }。注意它們的鍵/值對用冒號分割,而各個對用逗號分割,所有這些都包括在花括號中。另外,記住字典中的鍵/值對是沒有順序的。如果你想要一個特定的順 序,那麼你應該在使用前自己對它們排序。
例項:
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
- Python資料型別(數字,字串,[列表],(元組),{字典:字典值},{列表,列表2})Python資料型別字串
- Python學習筆記8——列表、字典、元組Python筆記
- Python 列表、元組、字典及集合操作詳解Python
- 三、python的資料型別 列表、元組、字典Python資料型別
- 2.列表_元組_字典_集合
- Python中列表、元組、字典有何區別?Python學習!Python
- 【Python_029】內建資料結構,列表 | 字典 | 集合 | 元組Python資料結構
- Python的元組()與字典{}Python
- Python的元組()與字典 { }Python
- python元組和列表Python
- python3 筆記14.列表元組字典支援的函式Python筆記函式
- python元組與字典簡介Python
- Python列表、元組、集合、字典的區別是什麼?入門知識!Python
- Python元組和字典的拆包Python
- Python中列表、元組、字典、集合與字串,相關函式,持續更新中……Python字串函式
- Python之列表&元組小練Python
- python list列表基礎(元組)Python
- Python 學習之元組列表Python
- Python元組、列表、集合及列表去重操作Python
- 微課|玩轉Python輕鬆過二級(2.1.4節):列表、元組、字典、集合概述Python
- 3-python 元組 字典 集合的操作Python
- 字典,元組,集合
- python -三元表示式、列表生成式、字典生成式Python
- python資料型別 列表+元組Python資料型別
- python 元組,列表 迴圈遍歷Python
- 好程式設計師Python培訓分享入門之元組列表字典詳解程式設計師Python
- Python基礎知識七 元組&字典&集合Python
- Py知識點筆記(列表、元組和字典).Day01筆記
- Python奇技淫巧—[2]—使用元組代替字典,同時為元組元素命名,提高可讀性Python
- python列表(list)和元組(tuple)詳解Python
- Python 元組,不可變的列表,滾雪球學 PythonPython
- 列表與元組
- 列表和元組
- python 字典和列表巢狀用法Python巢狀
- 玩轉python字典與列表(上)Python
- 玩轉python字典與列表(中)Python