python将dataframe数据写入excel文件
时间: 2023-08-24 07:09:58 浏览: 955
Python 中读取excel数据
可以使用Python中的pandas库将dataframe数据写入Excel文件。具体方法如下:
先安装pandas库:
```python
!pip install pandas
```
然后在Python中导入pandas库,并将dataframe数据写入Excel文件:
```python
import pandas as pd
# 创建dataframe数据
df = pd.DataFrame({'Name': ['Alice', 'Bob', 'Charlie', 'David'],
'Age': [25, 32, 18, 47],
'Sex': ['F', 'M', 'M', 'M']})
# 将dataframe数据写入Excel文件
writer = pd.ExcelWriter('output.xlsx')
df.to_excel(writer, index=False)
writer.save()
```
在上述代码中,我们首先创建了一个简单的dataframe数据。然后,我们创建了一个ExcelWriter对象,指定要写入的文件名为output.xlsx。接着,我们使用dataframe的to_excel()方法将数据写入Excel文件中,并将index设置为False,最后保存Excel文件。
阅读全文