Aug-31-2018, 04:54 AM
note that your line is not correct again - you have put {i} within the curly braces for row[0]
sheet.merge_cells(f'{pair[0]{i}}:{pair[1]}{i}')shoud be
sheet.merge_cells(f'{pair[0]}{i}:{pair[1]}{i}')
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs