下面这些我实在懒得整理了,直接复制了,用到再研究,觉得没什么卵用
# 4. 对齐方式"""cell = sheet.cell(1, 1)# horizontal,水平方向对齐方式:"general", "left", "center", "right", "fill", "justify", "centerContinuous", "distributed"# vertical,垂直方向对齐方式:"top", "center", "bottom", "justify", "distributed"# text_rotation,旋转角度。# wrap_text,是否自动换行。cell.alignment = Alignment(horizontal='center', vertical='distributed', text_rotation=45, wrap_text=True)wb.save("p2.xlsx")"""# 5. 边框# side的style有如下:dashDot','dashDotDot', 'dashed','dotted','double','hair', 'medium', 'mediumDashDot', 'mediumDashDotDot','mediumDashed', 'slantDashDot', 'thick', 'thin'"""cell = sheet.cell(9, 2)cell.border = Border(top=Side(style="thin", color="FFB6C1"),bottom=Side(style="dashed", color="FFB6C1"),left=Side(style="dashed", color="FFB6C1"),right=Side(style="dashed", color="9932CC"),diagonal=Side(style="thin", color="483D8B"), # 对角线diagonalUp=True, # 左下 ~ 右上diagonalDown=True # 左上 ~ 右下)wb.save("p2.xlsx")"""# 6.字体"""cell = sheet.cell(5, 1)cell.font = Font(name="微软雅黑", size=45, color="ff0000", underline="single")wb.save("p2.xlsx")"""# 7.背景色"""cell = sheet.cell(5, 3)cell.fill = PatternFill("solid", fgColor="99ccff")wb.save("p2.xlsx")"""# 8.渐变背景色"""cell = sheet.cell(5, 5)cell.fill = GradientFill("linear", stop=("FFFFFF", "99ccff", "000000"))wb.save("p2.xlsx")"""# 9.宽高(索引从1开始)"""sheet.row_dimensions[1].height = 50sheet.column_dimensions["E"].width = 100wb.save("p2.xlsx")"""
