Python 字典 update() 方法

实例

向字典插入项目:

  1. car = {
  2. "brand": "Porsche",
  3. "model": "911",
  4. "year": 1963
  5. }
  6.  
  7. car.update({"color": "White"})
  8.  
  9. print(car)

定义和用法

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

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

语法

  1. dictionary.update(iterable)

参数值

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