【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。
留言
張貼留言