自动化办公|通过xlwings进行excel格式设置

1. 介绍

xlwings 是一个强大的 Python 库,可以用来操作 Excel,包括设置单元格格式、调整行高列宽、应用条件格式以及使用内置样式。本文将详细介绍如何使用 xlwings 进行 Excel 格式化操作,并附带代码示例。

2. 基础格式设置(字体、颜色、边框)

2.1 设置字体和颜色

复制代码
import xlwings as xw

wb = xw.Book('example.xlsx')
sht = wb.sheets['Sheet1']

# 设置单元格字体和颜色
rng = sht.range('A1:C3')
rng.font.name = '微软雅黑'  # 字体
rng.font.size = 12         # 字号
rng.font.color = (255, 0, 0)  # 字体颜色 (RGB)
rng.api.Font.Bold = True   # 加粗

# 设置背景色
rng.color = (255, 255, 0)  # 黄色背景

2.2 设置边框

复制代码
# 设置边框
border = rng.api.Borders
border.LineStyle = 1  # 实线
border.Weight = 2     # 中等粗细
rng.api.Borders(9).LineStyle = 1  # 下边框 (9对应Excel常量xlEdgeBottom)

3. 调整行高和列宽

复制代码
# 调整行高和列宽
sht.range('A1').row_height = 25    # 设置第1行高度
sht.range('A1').column_width = 15  # 设置A列宽度

# 自动调整行高列宽
sht.range('A1:C10').autofit()      # 自动调整行高和列宽
sht.autofit('columns')             # 仅自动调整列宽

4. 应用条件格式

4.1 高亮大于100的单元格

复制代码
cf_range = sht.range('D1:D10')
cf = cf_range.api.FormatConditions.Add(
    Type=2,  # xlCellValue
    Operator=5,  # xlGreater
    Formula1="100"
)
cf.Font.Color = 0xFF0000  # 红色字体
cf.Interior.Color = 0xFFFF00  # 黄色背景

4.2 使用数据条(Data Bars)

复制代码
cf_range.api.FormatConditions.AddDatabar()
data_bar = cf_range.api.FormatConditions(1)
data_bar.BarColor.Color = 0x00B050  # 绿色数据条

5. 使用内置样式

复制代码
# 应用Excel内置样式
sht.range('A1').style = 'Good'     # 绿色背景
sht.range('B1').style = 'Bad'      # 红色背景
sht.range('C1').style = 'Neutral'  # 黄色背景

# 自定义样式
style_name = 'CustomStyle'
if style_name not in [s.Name for s in wb.api.Styles]:
    style = wb.api.Styles.Add(style_name)
    style.Font.Bold = True
    style.Interior.Color = 0x00FF00
sht.range('D1').style = style_name

6. 完整示例

复制代码
import xlwings as xw

wb = xw.Book()
sht = wb.sheets[0]

# 填充测试数据
sht.range('A1').value = [[10, 200], [150, 50]]

# 格式设置
rng = sht.range('A1:B2')
rng.font.name = 'Calibri'
rng.font.size = 12
rng.column_width = 15

# 条件格式
cf = rng.api.FormatConditions.Add(
    Type=2, Operator=5, Formula1="100"
)
cf.Interior.Color = 0x00FF00

# 保存
wb.save('formatted.xlsx')
wb.close()

7. 注意事项

  • 颜色可使用 RGB 元组 (R, G, B) 或十六进制值(需转换为整数)。

  • 部分高级功能需通过 .api 调用 Excel VBA 对象模型。

相关推荐
蹦蹦跳跳真可爱5892 小时前
Python----计算机视觉处理(Opencv:道路检测之提取车道线)
python·opencv·计算机视觉
hello_simon2 小时前
在线小白工具,PPT转PDF支持多种热门工具,支持批量转换,操作简单,高效适合各种需求
pdf·html·powerpoint·excel·pdf转html·excel转pdf格式
Tanecious.4 小时前
机器视觉--python基础语法
开发语言·python
ALe要立志成为web糕手4 小时前
SESSION_UPLOAD_PROGRESS 的利用
python·web安全·网络安全·ctf
Tttian6225 小时前
Python办公自动化(3)对Excel的操作
开发语言·python·excel
蹦蹦跳跳真可爱5896 小时前
Python----机器学习(KNN:使用数学方法实现KNN)
人工智能·python·机器学习
独好紫罗兰6 小时前
洛谷题单2-P5713 【深基3.例5】洛谷团队系统-python-流程图重构
开发语言·python·算法
DREAM.ZL8 小时前
基于python的电影数据分析及可视化系统
开发语言·python·数据分析
Uncertainty!!8 小时前
python函数装饰器
开发语言·python·装饰器
吾日三省吾码9 小时前
Python 脚本:自动化你的日常任务
数据库·python·自动化