今天我们将介绍如何使用python的win32com模块对已有的excel文件进行操作,特别是如何为单元格添加底色。
Part 1:示例说明
我们的示例工作表的第一行包含数据。如果某个单元格中的数据大于5,我们将该单元格的底色设置为红色。以下是原始数据和程序运行后的效果图:

程序运行后:
立即学习“Python免费学习笔记(深入)”;

Part 2:代码
以下是实现上述功能的Python代码:
Cutout老照片上色
Cutout.Pro推出的黑白图片上色
20 查看详情
import osimport win32comfrom win32com.client import constants as c # 用于直接使用VBA常数current_address = os.path.abspath('.')excel_address = os.path.join(current_address, "示例.xlsx")print(current_address)
xl_app = win32com.client.gencache.EnsureDispatch("Excel.Application") # 若想引用常数的话使用此法调用Excelxl_app.Visible = False # 是否显示Excel文件
wb = xl_app.Workbooks.Open(excel_address)sht = wb.Worksheets(1)sht.Name = "示例"
max_col = sht.Cells(1, sht.Columns.Count).End(c.xlToLeft).Column
for j in range(1, max_col+1):print(j)cells_value = sht.Cells(1, j).Value
if cells_value > 5: sht.Cells(1, j).Interior.Pattern = c.xlSolid sht.Cells(1, j).Interior.PatternColorIndex = c.xlAutomatic sht.Cells(1, j).Interior.Color = 255 sht.Cells(1, j).Interior.TintAndShade = 0 sht.Cells(1, j).Interior.PatternTintAndShade = 0wb.Save()wb.Close()
代码截图:
Part 3:部分代码解读
max_col = sht.Cells(1, sht.Columns.Count).End(c.xlToLeft).Column用于获取工作表的最大列数,其用法与VBA类似,只是常数前加了一个
c。
sht.Cells(1, j).Interior.Color = 255用于设置单元格的底色为红色。如果需要更改颜色,可以在Excel中使用录制宏功能来查看不同颜色的数值。
以上就是Python-Excel-04-单元格上个底色的详细内容,更多请关注创想鸟其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 chuangxiangniao@163.com 举报,一经查实,本站将立刻删除。
发布者:程序猿,转转请注明出处:https://www.chuangxiangniao.com/p/592738.html
微信扫一扫
支付宝扫一扫