Python 中字典怎么在已有的键值对中添加
时间: 2024-05-15 14:16:07 浏览: 77
python如何给字典的键对应的值为字典项的字典赋值
5星 · 资源好评率100%
可以使用字典的update()方法来添加已有的键值对。
例如,假设有一个字典d,已经包含了键值对{'a':1, 'b':2},现在要添加键值对{'c':3}:
```python
d = {'a':1, 'b':2}
d.update({'c':3})
print(d)
```
输出结果为:
```python
{'a': 1, 'b': 2, 'c': 3}
```
如果要添加的键已经存在于字典中,则会更新对应的值。例如,如果再添加键值对{'a':4},则会更新键'a'对应的值为4:
```python
d.update({'a':4})
print(d)
```
输出结果为:
```python
{'a': 4, 'b': 2, 'c': 3}
```
阅读全文