Trouble with applying Styles in - OpenPyXL
问题 I am trying to style specific rows and columns. worksheet.cell(row=file_row_number, column=1).value = "Hotel ID" _cell = worksheet.cell("C1") _cell.style.font.bold = True It shows me error TypeError: cannot set bold attribute Previously I was using XLWT and it had very easy method of applying styles like you define style variable once and then for ever write() yo can just pass the style variable to apply style on that row/column Is there any way in OpenPyXL to apply style easily as I