gpt4 book ai didi

python - 使用 xlsxwriter 为单个单元格着色

转载 作者:行者123 更新时间:2023-12-04 08:09:57 25 4
gpt4 key购买 nike

我想使用 xlsxwriter 仅为一个单元格设置背景颜色、字体颜色、字体类型、字体大小等属性。
我正在寻找像 .set_rows() 和 .set_columns() 这样的方法。有没有办法只访问 1 个特定的单元格。
提前致谢

最佳答案

您可以使用 xlswriter 库以格式化单个格式,如下例所示

import xlsxwriter

# Create a new Excel file and add a worksheet.
wb = xlsxwriter.Workbook('mydocument.xlsx')
ws = wb.add_worksheet()

# Widen the first two columns
ws.set_column('A:B', 20)

# Write a non-formatted text
ws.write('A1', 'fox jumped')

# Define a format and add some attributes in order to highlight the related cells
frm1 = wb.add_format({'bold': True})
frm1.set_font_color('#FF0000')
frm1.set_bg_color('#808080')

ws.write('A2', 'over the lazy dog', frm1)


# Define a format and add attributes at once
frm2 = wb.add_format({'italic': True,'border': 1,'bg_color': '#FFC7CE','font_color': '#9C0006'})

ws.write('B1','over the lazy dog',frm2)

wb.close()

关于python - 使用 xlsxwriter 为单个单元格着色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66027896/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com