python怎么创建一个字典集合
时间: 2023-05-25 21:01:45 浏览: 173
A:Python中可以通过大括号{}或者dict()函数来创建字典集合。
使用大括号{}创建字典集合:
```
# 创建一个空字典
my_dict = {}
# 创建带有键值对的字典
my_dict = {'name': 'Tom', 'age': 18, 'gender': 'male'}
```
使用dict()函数创建字典集合:
```
# 创建一个空字典
my_dict = dict()
# 创建带有键值对的字典
my_dict = dict(name='Tom', age=18, gender='male')
```
注意:字典中的键是唯一的,如果重复了会覆盖旧值。例如:
```
my_dict = {'name': 'Tom', 'age': 18, 'gender': 'male', 'name': 'Jerry'}
print(my_dict) # 输出结果为:{'name': 'Jerry', 'age': 18, 'gender': 'male'}
```
阅读全文