Python 官方文档:入门教程 => 点击学习
今天看了几篇关于python对excel表格进行着色的文档,但是感觉都讲的不够清晰,顾写此篇供大家参考。 一、效果图 二、代码实现 2.1 导入相关模块 import openpyxlf
今天看了几篇关于python对excel表格进行着色的文档,但是感觉都讲的不够清晰,顾写此篇供大家参考。
import openpyxlfrom openpyxl.styles import Font # 导入字体模块from openpyxl.styles import PatternFill # 导入填充模块from openpyxl.styles import Border, Side # 导入修改边框线及颜色模块from openpyxl.styles import Alignment # 导入居中方式模块#颜色参数设置可参考在线调色板链接:https://color.d777.com/
wk = openpyxl.load_workbook(file_name) # 加载已经存在的excel sheet1 = wk[title] #打开excel中标签名称为title的表格
#设置单元格字体颜色和背景色fille = PatternFill('solid', fGColor='f8c600') # 设置填充颜色为橙色font = Font(u'黑体', size=8, bold=True, italic=False, strike=False, color='000000') # 设置字体样式sheet1.cell(row=2, column=8, value="").fill = fille # 填充单元格背景色sheet1.cell(row=2, column=8, value="哈哈").font = font # 填充单元格内容和字体样式
#设置单元格边框属性thin = Side(border_style='thick', color="FF0000") # 边框颜色为红色border = Border(left=thin, right=thin, top=thin, bottom=thin) #设置边框属性为细线for row in sheet1['A10:E12']: for cell in row: cell.border = border# sheet1.cell(row=2, column=8).border = border #单一单元格设置边框
#设置单元格居中方式align = Alignment(horizontal='center', vertical='center', wrapText=True) #设置居中方式为水平、垂直居中sheet1.cell(row=2, column=8).alignment = align
import openpyxlfrom openpyxl.styles import Font # 导入字体模块from openpyxl.styles import PatternFill # 导入填充模块from openpyxl.styles import Border, Side # 导入修改边框线及颜色模块from openpyxl.styles import Alignment # 导入居中方式模块#颜色参数设置可参考在线调色板链接:Https://color.d777.com/def Textcolor(file_name,title): wk = openpyxl.load_workbook(file_name) # 加载已经存在的excel sheet1 = wk[title] #打开excel中标签名称为title的表格 #设置单元格字体颜色和背景色 fille = PatternFill('solid', fgColor='f8c600') # 设置填充颜色为橙色 font = Font(u'黑体', size=8, bold=True, italic=False, strike=False, color='000000') # 设置字体样式 sheet1.cell(row=2, column=8, value="").fill = fille # 填充单元格背景色 sheet1.cell(row=2, column=8, value="哈哈").font = font # 填充单元格内容和字体样式 #设置单元格边框属性 thin = Side(border_style='thick', color="FF0000") # 边框颜色为红色 border = Border(left=thin, right=thin, top=thin, bottom=thin) #设置边框属性为细线 for row in sheet1['A10:E12']: for cell in row: cell.border = border # sheet1.cell(row=2, column=8).border = border #单一单元格设置边框 #设置单元格居中方式 align = Alignment(horizontal='center', vertical='center', wrapText=True) #设置居中方式为水平、垂直居中 sheet1.cell(row=2, column=8).alignment = align wk.save(file_name) # 保存excelif __name__ == '__main__': file_name, title = 'test.xlsx', 'Sheet1' Textcolor(file_name,title)
来源地址:https://blog.csdn.net/weixin_43734080/article/details/129704706
--结束END--
本文标题: Python对excel单元格着色
本文链接: https://lsjlt.com/news/388228.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-03-01
2024-03-01
2024-03-01
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
2024-02-29
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0