Opening an xlsx file – Ubuntu
I've extracted an excel file by running the code below. from zipfile import ZipFile with ZipFile('HISTDATA_COM_XLSX_EURUSD_M12018.zip', 'r') as zipObj: zipObj.extractall() After that, I wanted to open it. Due to being an xlsx file, I imported the openpyxl module and ran…