Python - 修改字典项
修改值
您可以通过引用其键名来更改特定项的值
示例
将“year”更改为 2018
thisdict = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
thisdict["year"] = 2018
尝试一下 »
更新字典
update()
方法将使用给定参数中的项更新字典。
参数必须是字典,或者包含键值对的可迭代对象。
示例
使用 update()
方法更新汽车的“year”
thisdict = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
thisdict.update({"year": 2020})
尝试一下 »