小码哥的IT人生

Python 字典 update() 方法

Python基础 2022-06-06 16:07:10小码哥的IT人生shichen

Python 字典 update() 方法

实例

向字典插入项目:

car = {
  "brand": "Porsche",
  "model": "911",
  "year": 1963
}
car.update({"color": "White"})
print(car)

完整实例:

car = {
  "brand": "Porsche",
  "model": "911",
  "year": 1963
}
car.update({"color": "White"})
print(car)

定义和用法

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

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

语法

dictionary.update(iterable)

参数值

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

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024