Font:来设置文字的大小,颜色和下划线等 PatternFill:填充图案和渐变色 Border:单元格的边框 Alignment:单元格的对齐方式等
protection:写保护
- Font:
from openpyxl.styles import Font
ws.['A1'].font = Font(u'宋体',size = 11,bold=True,italic=True,strike=True,color='000000')
设置字体为“宋体”,大小为11,bold为加粗,italic为斜体,strike为删除线,颜色为黑色
- PatternFill:
我看了下网上的文章,貌似没有哪篇解释得很清楚from openpyxl.styles importPatternFill
fill = PatternFill(fill_type = None,start_color='FFFFFF',end_color='000000')
ws.['B1'].fill = fill
注意,官方文档中写明,fill_type若没有特别指定类型,则后续的参数都无效
所以上述代码就会出问题,start_color代表前景色,end_color是背景色,之所以设置两个参数是为了方便样式颜色的填充和渐变色的显示(个人认为)
这里官方文档给出了很多种填充类型(类似于我们操作excel表格)‘none’、‘solid’、‘darkDown’、‘darkGray’、‘darkGrid’、‘darkHorizontal’、‘darkTrellis’、‘darkUp’、‘darkVertical’、‘gray0625’、‘gray125’、‘lightDown’、‘lightGray’、‘lightGrid’、‘lightHorizontal’、‘lightTrellis’、‘lightUp’、‘lightVertical’、‘mediumGray’
具体每个参数是什么意思不解释了,如果想要纯色填充的话可以用’solid’,然后令前景色为你需要的颜色即可。
Border:from openpyxl.styles importBorder,Side
border = Border(left=Side(border_style='thin',color='000000'),
right=Side(border_style='thin',color='000000'),
top=Side(border_style='thin',color='000000'),
bottom=Side(border_style='thin',color='000000'))
ws.['C1'].border = border
注意这里需要导入Border和Side两个函数
边框的样式有很多,官方给出的样式如下:‘dashDot’,‘dashDotDot’,‘dashed’,‘dotted’,‘double’,‘hair’,‘medium’,‘mediumDashDot’,‘mediumDashDotDot’,‘mediumDashed’,‘slantDashDot’,‘thick’,‘thin’
注意,如果没有定义边框的样式,那么后面的参数将没有作用
另外,边框不只left,right,top,bottom,官方还给出了几个参数,我这里不详细讲了,目测对角线什么的也不一定能用到’diagonal’,‘diagonal_direction’,‘vertical’,‘horizontal’
Alignment:fromopenpyxl.styles importAlignment
align = Alignment(horizontal='left',vertical='center',wrap_text=True)
ws.['D1'].alignment = align
horizontal代表水平方向,可以左对齐left,还有居中center和右对齐right,分散对齐distributed,跨列居中centerContinuous,两端对齐justify,填充fill,常规general
vertical代表垂直方向,可以居中center,还可以靠上top,靠下bottom,两端对齐justify,分散对齐distributed
另外还有自动换行:wrap_text,这是个布尔类型的参数,这个参数还可以写作wrapText
Protection:from openpyxl.styles import Protection
protection = Protection(locked=True,hidden = True)
合并单元格:ws.merge_cells(‘A2:G10’) 合并A2到G10之间的单元格
openpyxl有一个名为get_column_letter的函数,可将数字转换为列字母。
from openpyxl.utils import get_column_letterprint(get_column_letter(1))
print(get_column_letter(1))
- 取消合并单元格
ws.unmerge_cells(“A1:D1”)
评论区