python字典添加键和值
时间: 2023-09-06 17:11:50 浏览: 85
python如何给字典的键对应的值为字典项的字典赋值
5星 · 资源好评率100%
在 Python 中,可以使用以下两种方法向字典中添加键值对:
1. 使用中括号语法:可以使用中括号语法来添加一个新键,并为其分配一个值。例如:
```
my_dict = {'name': 'Alice', 'age': 25}
my_dict['city'] = 'New York'
print(my_dict)
```
输出结果为:
```
{'name': 'Alice', 'age': 25, 'city': 'New York'}
```
2. 使用 `update()` 方法:可以使用 `update()` 方法向字典中添加一个或多个键值对。例如:
```
my_dict = {'name': 'Alice', 'age': 25}
my_dict.update({'city': 'New York', 'country': 'USA'})
print(my_dict)
```
输出结果为:
```
{'name': 'Alice', 'age': 25, 'city': 'New York', 'country': 'USA'}
```
阅读全文