I create lots of(50+) *.xls file by C++ , if these files are read directly by pandas, like this
df = pd.read_excel(’./1.xls’)
it is not possible, if 1.xls is opened and than save as 2.xls manually, pandas can read 2.xls well.
so I want to use calc script to do this job , open an *.xls file, and save as another xls file ,how to write calc script ?