I need to start excel and open a file directly from python. Currently I am using:
import os
os.system(\'start excel.exe file.xls\')
However
You can also define the directory, where the python should operate.
import os
os.chdir('C:\\my_folder\\subfolder')
os.system('start excel.exe my_workbook.xlsx')