I would like to open .xlsx
file using python for further manual process.
I tried
wb = load_workbook(filename = 'empty_book.xlsx')
by importing openpyxl
module. But it does not open the file rather it just loads the file. Is there any other way to open excel file in python?
Thanks in advance