如何使用 Python pandas/XLSX writer 为 excel 设置数据边界
How to set borders to the data to the excel with Python pandas/XLSX writer
我正在尝试用 python pandas 的边框格式化 excel sheet,但是没有成功,任何人都可以帮忙。
我有这样的数据:
我想要这个格式:
这并不简单,您必须遍历数据框并将格式添加到每个单元格。
cell_format = workbook.add_format()
cell_format.set_border()
for col_num, col in enumerate(df.columns.values):
for row_num, value in enumerate(df[col].values):
worksheet.write(row_num + 1, col_num + 1, value, cell_format)
我正在尝试用 python pandas 的边框格式化 excel sheet,但是没有成功,任何人都可以帮忙。
我有这样的数据:
我想要这个格式:
这并不简单,您必须遍历数据框并将格式添加到每个单元格。
cell_format = workbook.add_format()
cell_format.set_border()
for col_num, col in enumerate(df.columns.values):
for row_num, value in enumerate(df[col].values):
worksheet.write(row_num + 1, col_num + 1, value, cell_format)