2020年1月12日 星期日

Excel Convert to CSV File Using Python Dependence


Dependence

  • pandas
pip3 install pandas
  • pandas
pip3 install xlrd

Convert Excel to CSV

data_xls = pd.read_excel(sourceFilePath, index_col=0)
data_xls.to_csv(destFilePath, encoding='utf-8')

Sample