pd.to_excel 保存为文本格式
时间: 2024-02-22 08:32:57 浏览: 145
文本文件转换为excel
你可以通过设置 `engine='openpyxl'` 来将 Pandas 的 DataFrame 保存为文本格式的 Excel 文件。具体而言,你可以按照以下步骤进行操作:
1. 导入 Pandas 模块。
```python
import pandas as pd
```
2. 读取数据,生成 DataFrame。
```python
df = pd.read_csv('data.csv')
```
3. 将 DataFrame 保存为文本格式的 Excel 文件。
```python
df.to_excel('data.txt', index=False, engine='openpyxl')
```
在上述代码中,`df.to_excel` 方法的第一个参数是保存文件的路径及文件名,第二个参数 `index=False` 表示不保存索引列,第三个参数 `engine='openpyxl'` 表示使用 openpyxl 引擎保存文件。
阅读全文