[python 学习笔记] openpyxl -- excel样式设置 & 冻结窗格

 1.  设置填充颜色, 字体, 边框

from openpyxl import load_workbook
from openpyxl.styles import PatternFill, Border, Side, Alignment, Protection, Font

wb = load_workbook(file_path)
ws = wb['sheet_name']

# 设置填充颜色
fill = PatternFill(fill_type='solid', start_color='FFD700', end_color='FFD700')

# 设置字体类型,大小,斜体, 加粗
bold_24_font = Font(name= '等线', size=20, italic=True, bold=True)

# 设置边框样式
thin = Side(border_style='thin', color='000000')
border = Border(top=thin, right=thin, left=thin, bottom=thin)

# 设置对齐方式
alignment=Alignment(horizontal='general',vertical='bottom')


# 设置sheet标签的颜色
ws.tabColor = '1072BA'

 2. 单元格使用这些样式

# 单元格使用这些样式
ws['A1'].fill = fill
ws['A1'].font = bold_24_font
ws['A1'].border = border

ws.cell(row, column).fill = fill
ws.cell(row, column).font = bold_24_font
ws.cell(row, column).border = border

 3.  设置行高 / 列宽 

# 设置行高
ws.row_dimensions[1].height = 30

# 设置列宽
ws.column_dimensions['A'].width = 13

 4.  设置冻结单元格

 冻结单元格所设置的参数为一个单元格,这个单元格上侧和左侧的所有行 / 列会被冻结

ws.freeze_panes = 'B1'   # 冻结第一列

ws.freeze_panes = 'A2'   # 冻结第一行

ws.freeze_panes = 'B2'   # 同时冻结第一行和第一列

 参考官方文档:https://openpyxl.readthedocs.io/en/stable/styles.html

你可能感兴趣的:(Python学习笔记)