【Python】Python - 迴圈Dictionary items。Python Loop Dictionary Items.

 【Python】Python - 迴圈Dictionary items。Python Loop Dictionary Items.

可以使用 for 迴圈來存取dictionary。

當使用迴圈存取dictionary時,回傳值為key值,但也有回傳value的方法。

範例

一個接一個的列印dictionary內的key name:

Print all key names in the dictionary, one by one:

for x in thisdict:
  print(x)
上面輸出: 
brand
model
year

範例

一個接一個的列印所有的value:

for x in thisdict:
  print(thisdict[x])
上面輸出: 
Ford
Mustang
1964

範例

也可以使用 values() 方法去回傳values。 

for x in thisdict.values():
  print(x)
上面回傳: 
Ford
Mustang
1964

範例

可以使用 keys() 方法去回傳dictionary內的keys列表: 

for x in thisdict.keys():
  print(x)
上面輸出: 
brand
model
year

範例

使用 items() 方法去迴圈keys與values:

for x, y in thisdict.items():
  print(x, y)
上面輸出: 
brand Ford
model Mustang
year 1964



留言

這個網誌中的熱門文章

【多益】現點現做的英文怎麼說呢?

《Microsoft Word 應用》:圖片被文字蓋住解決方法,不可設定為固定行高

如何在Ubuntu系統上安裝Notepad ++ (Install Notepad++ On Ubuntu 16.04 / 17.10 / 18.04 / 20.04)