把datafrane写入excelpython
时间: 2023-08-04 07:27:04 浏览: 84
python将数据写入excel
5星 · 资源好评率100%
可以使用 Pandas 库将 DataFrame 写入 Excel 文件中。可以使用 to_excel() 方法将 DataFrame 写入 Excel 文件。下面是一个简单的示例代码:
```python
import pandas as pd
# 创建一个 DataFrame
df = pd.DataFrame({'Name': ['Alice', 'Bob', 'Charlie'], 'Age': [25, 30, 35]})
# 将 DataFrame 写入 Excel 文件
df.to_excel('output.xlsx', index=False)
```
在上面的示例代码中,我们首先创建了一个 DataFrame,然后使用 to_excel() 方法将其写入名为 "output.xlsx" 的 Excel 文件中。index=False 参数表示不将 DataFrame 的行索引写入 Excel 文件中。
阅读全文