python把excel数据写入txt
时间: 2023-04-25 15:04:06 浏览: 149
python实现读Excel写入.txt的方法
可以使用Python中的pandas库来将Excel数据写入txt文件。具体步骤如下:
1. 导入pandas库
```python
import pandas as pd
```
2. 读取Excel文件
```python
df = pd.read_excel('excel文件路径')
```
3. 将数据写入txt文件
```python
df.to_csv('txt文件路径', sep='\t', index=False)
```
其中,`sep='\t'`表示使用制表符作为分隔符,`index=False`表示不将行索引写入txt文件中。
完整代码示例:
```python
import pandas as pd
# 读取Excel文件
df = pd.read_excel('excel文件路径')
# 将数据写入txt文件
df.to_csv('txt文件路径', sep='\t', index=False)
```
阅读全文