import pandas as pd
read_file = pd.read_csv(r'table.csv')
read_file.to_excel(r'table.xlsx', index=True, header=True)
I want to convert csv to excel at python, and index=True with starting from 1, not 0 as default. I tried to read some pandas documentation about that, but I didn't find solution there. Please help.