【Python】Python - 新增Dictionary items。Python Add Dictionary Items.

 【Python】Python - 新增Dictionary items。Python Add Dictionary Items.

可以使用index key去新增一個dictionary內的item。

範例

thisdict = {
  "brand""Ford",
  "model""Mustang",
  "year"1964
}
thisdict["color"] = "red"
print(thisdict)
上面輸出: {'brand': 'Ford', 'model': 'Mustang', 'year': 1964, 'color': 'red'}

更新 Dictionary

使用 update() 方法可以去更新dictionary的items。update()方法為dictionary內建的方法。如果item不存在會新增一個。使用方法為必須為dictionary或 iterable物件且有key:value成對的。

範例

使用 update() 方法去新增dictionary多一個color的item。:

thisdict = {
  "brand""Ford",
  "model""Mustang",
  "year"1964
}
thisdict.update({"color""red"})
上面會新增一個"color:"red"的item。







留言

這個網誌中的熱門文章

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

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

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