python xlsxwriter change row height for all rows in the sheet

Viewed 26430

Python xlsxwriter, change row height for all rows in the sheet, following is available but apply to single row

worksheet.set_row(0, 20)  # Set the height of Row 1 to 20.

Want to change height of all the rows sheet.

1 Answers
Related