Python/ref dictionary update

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python字典update()方法

❮字典方法

在字典中插入一个项目:

    car = {
  "brand": "Ford",
  "model": "Mustang",
  
    "year": 1964
}


car.update({"color": "White"})

print(car)

定义和用法

The update() 方法将指定的项目插入字典。

指定的项目可以是字典或可迭代的对象。

句法

dictionary.update(iterable)
  

参数值

参数 描述
iterable 具有键值对的字典或可迭代对象,将插入到字典中

❮字典方法