在Python中将excel文件转换为管道分隔文件

时间:2016-07-26 08:01:03

标签: python-2.7 xlsx

我知道我们可以使用python的csv模块将CSV文件写为管道分隔文件,但是我想将我的excel文件编写为管道分隔文本文件,是否有类似于csv模块的模块可以帮助我实现这一点?

1 个答案:

答案 0 :(得分:0)

您可以使用熊猫模块

# Import modules
import pandas as pd

# read the content of your Excel file into a dataframe
df_sheet  = pd.read_excel('test.xlsx', index_col=0) 

# write the content of your dataframe into a csv file with the right delimiter
df_sheet.to_csv ("test.csv", sep="|")