I am using the following code to convert .xlsx files into .csv files.
import pandas as pd
data_xls = pd.read_excel('excelfile.xlsx', 'Sheet2', index_col=None)
data_xls.to_csv('csvfile.csv', encoding='utf-8')
The code is working, however I am getting an index column with the cell numbers which I do not want. Is there anyway to not include or remove that index column?
File output
Unnamed Data
0 0.99319613
1 0.99319613
2 0.99319613
3 0.99319613
4 0.99319613
5 0.99319613