python中update函数示例
时间: 2023-11-09 13:07:42 浏览: 71
程序版本更新示例程序
在Python中,update()函数是用来将一个字典类型的数据合并到另一个字典中的函数。举个例子,假设我们有两个字典a和b,我们想将字典b合并到字典a中:
```python
a = {"name": "Tom", "age": 20}
b = {"gender": "male", "height": 175}
a.update(b)
print(a)
```
输出结果为:
```
{'name': 'Tom', 'age': 20, 'gender': 'male', 'height': 175}
```
可以看到,字典b中的键值对被合并到了字典a中。如果字典a中已经存在了某个键,那么它的值会被字典b中对应键的值覆盖。
阅读全文