我正在尝试使用python中的熊猫将多个Excel文件'.xlsx'转换为'.csv'。我可以在csv中转换多个excel文件,但是在“ .csv”文件的开头有一个额外的列。
这是我的代码-
import pandas as pd,xlrd,glob
excel_files = glob.glob(r"C:\Users\Videos\file reader\*.xlsx")
for excel_file in excel_files:
print("Converting '{}'".format(excel_file))
try:
df = pd.read_excel(excel_file)
output = excel_file.split('.')[0]+'.csv'
df.to_csv(output)
except KeyError:
print(" Failed to convert")
输入-
输出-
正如我们在输出文件中看到的,还有一个额外的列。谁能告诉我 我如何删除它?
谢谢