I have a scenario where I wanted to change the name of a sheet in the spread-sheet.
I tried creating a spread-sheet using
ss = Workbook()
. I think this is creating the spread-sheet with a sheet named "Sheet".I tried changing the name of the sheet using the below format:
ss_sheet = ss.get_sheet_by_name('Sheet') ss_sheet.Name = 'Fruit'
But then the above step is not changing the sheet name as required. Is there anything wrong in the above step?