请提供一段python代码:把二维列表变成一维列表
时间: 2023-06-02 21:06:58 浏览: 92
python 实现二维列表转置
当然,这是一个很容易解答的问题。以下是将二维列表转换为一维列表的Python代码示例:
```
nested_list = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
flattened_list = []
for sublist in nested_list:
for item in sublist:
flattened_list.append(item)
print(flattened_list)
```
输出将会是 `[1, 2, 3, 4, 5, 6, 7, 8, 9]`,正是我们所期望的一维列表。
阅读全文