编写一个二维字典代码 python
时间: 2024-01-16 21:17:47 浏览: 77
Python的“二维”字典 (two-dimension dictionary)定义与实现方法
以下是一个编写二维字典的Python代码示例:
```python
# 创建一个二维字典
matrix = {
'row1': {'col1': 1, 'col2': 2, 'col3': 3},
'row2': {'col1': 4, 'col2': 5, 'col3': 6},
'row3': {'col1': 7, 'col2': 8, 'col3': 9}
}
# 访问二维字典中的元素
print(matrix['row2']['col2']) # 输出:5
# 修改二维字典中的元素
matrix['row3']['col3'] = 10
# 遍历二维字典
for row in matrix:
for col in matrix[row]:
print(matrix[row][col])
# 将二维字典转换为列表
matrix_list = list(matrix.items())
print(matrix_list)
```
阅读全文