Answers for "how to convert excel data to csv format"

11

Convert Excel to CSV using Python

import pandas as pd
data_xls = pd.read_excel('excelfile.xlsx', 'Sheet2', dtype=str, index_col=None)
data_xls.to_csv('csvfile.csv', encoding='utf-8', index=False)
Posted by: Guest on December-13-2020

Code answers related to "how to convert excel data to csv format"

Python Answers by Framework

Browse Popular Code Answers by Language