python中向字典中添加键值对
时间: 2023-08-29 07:12:27 浏览: 86
python如何给字典的键对应的值为字典项的字典赋值
5星 · 资源好评率100%
。
您可以使用以下语法向Python字典添加键值对:
```python
my_dict = {"name": "Alice", "age": 25}
my_dict["city"] = "New York"
print(my_dict)
```
这将输出字典中包含的所有键值对,其中包括刚刚添加的新的"city"键值对。
阅读全文