python将excel内容写入txt并去掉空白部分
时间: 2023-03-27 14:00:30 浏览: 99
可以使用Python的pandas库来读取Excel文件,然后将内容写入txt文件中。具体步骤是先读取Excel文件,然后将数据转换为DataFrame格式,再将DataFrame中的数据写入txt文件中。去掉空白部分可以使用strip()函数。示例代码如下:
```
import pandas as pd
# 读取Excel文件
df = pd.read_excel('example.xlsx')
# 将DataFrame中的数据写入txt文件中
with open('example.txt', 'w') as f:
for row in df.itertuples(index=False):
# 去掉空白部分
row = [str(cell).strip() for cell in row]
f.write('\t'.join(row) + '\n')
```
以上代码将Excel文件中的内容写入了example.txt文件中,并去掉了空白部分。
阅读全文