Python字典使用例子

2021-10-09 22:21:38 字數 1733 閱讀 1958

python字典基礎知識

1.字典資料用花括號包含,以鍵對值形式表示

2.不同鍵對值用逗號隔開,鍵和值用冒號隔開

3.鍵不能重複,值可以重複;鍵不能修改,值可以修改

4.值可以是用{}表示的物件

如:d =

python字典基本操作

例1

population =[,

]country_population =

for item in world_population:

country_population[item[

'country']]

=int

(item[

'population'])

print

(country_population)

輸出結果:

country_population[

'uk'

]= country_population[

'united kingdom'

]country_population[

'us'

]= country_population[

'united states'

]country_population[

'serbia']=

7057666

print

(country_population)

輸出結果:

例2

history =

for date in history:

print

(date)

輸出結果1/

1/201

/2/20

1/3/

20

注:這裡遍歷的是key.

例3

d =},

},}]

}}#1for i,location in

enumerate

(d['number'][

'locations'])

:print

(i,"and"

, location)

輸出結果:

0and}1

and}

2and}#2

print

(location[

'country'])

輸出結果

china

usuk

#3for date in location[

'history']:

print

(date)

number =

int(location[

'history'

][date]

)print

(number)

輸出結果:1/

1/200

1/2/

2011/

3/202

1/1/

20101/

2/20111/

3/20121/

1/201101/

2/201111/

3/20112

注1:enumerate() 函式用於將乙個可遍歷的資料物件(如列表、元組或字串)

組合為乙個索引序列,同時列出資料和資料下標,一般用在for 迴圈當中,資料下標作為乙個變數,資料作為第二個變數。

注2:字典d = ,d[『key』] 指向值value

python 字典使用

字典dict 目錄 內容 也稱為字典 對映,字典是沒有順序的 python中的字典dict 是一種可以儲存多個key value 鍵值對資料的組合資料型別 name dict name 字典常見操作 增加 刪除 修改 查詢 clear 清空 copy 複製 fromkeys 通過指定的key生成乙個...

Python 字典的使用

字典的使用 字典是乙個容器類,可以用來儲存資料 列表儲存資料特點 1.有序的 2.每乙個資料都有乙個索引,通過索引可以對資料進行查詢,修改,刪除 字典儲存資料 key value 鍵值對 key 必須是不可變的,一般使用字串作為字典中的key,也可用數字等不可變型別的值 key 是唯一的,如果有多個...

python 字典的使用

keyerror age 一.字典 1.字典字典定義 儲存鍵值對 無序,一般用於儲存乙個物體相關資訊 型別可能不同 dict 1 print dict 1 print dict 1 學號 1506111096 根據鍵取字典中的值 鍵不存在,會報錯 print dict 1 age 2.字典基本使用 ...