python 将矩阵写入excel
时间: 2023-08-24 12:07:05 浏览: 389
Python 保存矩阵为Excel的实现方法
可以使用Python中的pandas库来将矩阵写入Excel文件。
首先,需要导入pandas库:
```python
import pandas as pd
```
然后,定义一个矩阵:
```python
matrix = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
```
接下来,将矩阵转换为pandas的DataFrame对象:
```python
df = pd.DataFrame(matrix)
```
最后,将DataFrame对象写入Excel文件:
```python
df.to_excel('matrix.xlsx', index=False)
```
其中,index=False表示不将行索引写入Excel文件。如果想将行索引写入Excel文件,可以将index参数设置为True。
阅读全文