I\'m using Python version 3.6 and the latest version of the openxlpy module (v2.4.8) on Windows.
I want to change certain font to bold in a cell, but I don\'t want a
Answers post title but not ops specific question.
from openpyxl.workbook import Workbook from openpyxl.styles import Font wb = Workbook() ws = wb.active ws['B3'] = "Hello" ws['B3'].font = Font(bold=True) wb.save("BoldDemo.xlsx")