如何定义一个空的字典数组,并向其中添加字典
时间: 2023-06-14 15:05:24 浏览: 301
易语言字典数组算法模块
在Python中,可以通过以下方式定义一个空的字典数组,并向其中添加字典:
```python
# 定义一个空的字典数组
dict_array = []
# 向字典数组中添加字典
dict1 = {'name': 'Alice', 'age': 20}
dict2 = {'name': 'Bob', 'age': 25}
dict_array.append(dict1)
dict_array.append(dict2)
print(dict_array) # 输出 [{'name': 'Alice', 'age': 20}, {'name': 'Bob', 'age': 25}]
```
首先,我们定义了一个空的字典数组 `dict_array`。然后,我们创建了两个字典 `dict1` 和 `dict2`,并将它们添加到 `dict_array` 中,使用 `append()` 方法。最后,我们打印了 `dict_array`,它应该输出 `[{'name': 'Alice', 'age': 20}, {'name': 'Bob', 'age': 25}]`。
阅读全文