表格是 word 文档中的强大工具,可让使用者以结构化的方式组织和呈现信息。它由行和列组成,形成网格状结构。表通常用于各种目的,例如创建计划、比较数据或以整洁有序的格式显示数据。本文将介绍如何使用 spire.doc for python 在 python 中创建 word 文档中的表格。
安装 spire.doc for python
本教程需要使用 spire.doc for python 和 plum-dispatch v1.7.4。您可以通过以下 pip 命令将它们轻松安装到 vs code 中。
pip install spire.doc
如果您不确定如何安装,请参考此教程:如何在 vs code 中安装 spire.doc for python
python 在 word 文档中创建表格
spire.doc for python 提供了 section.addtable() 方法,支持在 word 文档中创建表格。下面是详细的步骤:
- 创建 document 类的对象。
- 使用 document.addsection() 方法添加一个章节和使用。
- 创建一个 table 对象。
- 使用 table.addrow() 方法向其添加一行。
- 通过 row.cells[index] 属性获取行的特定单元格。
- 使用 tablecell.addparagraph().appendtext() 向单元格添加文本。
- 使用 section.addtable() 方法将表格添加到文档中。
- 使用 document.savetofile() 方法保存结果文档。
- python
from spire.doc import *
from spire.doc.common import *
# 创建文档对象
doc = document()
# 添加一个节
section = doc.addsection()
# 创建一个表格对象
table = table(doc)
# 设置表格宽度为100%
table.preferredwidth = preferredwidth(widthtype.percentage, int(100))
# 设置表格边框样式为单线,颜色为黑色
table.tableformat.borders.bordertype = borderstyle.single
table.tableformat.borders.color = color.get_black()
# 添加一行,包含3个单元格
row = table.addrow(false, 3)
# 设置行高为20.0
row.height = 20.0
# 获取第一个单元格
cell = row.cells[0]
# 设置单元格垂直居中对齐
cell.cellformat.verticalalignment = verticalalignment.middle
# 在单元格中添加段落
paragraph = cell.addparagraph()
# 设置段落水平居中对齐
paragraph.format.horizontalalignment = horizontalalignment.center
# 向段落中添加文本
paragraph.appendtext("row 1, col 1")
# 获取第二个单元格
cell = row.cells[1]
# 设置单元格垂直居中对齐
cell.cellformat.verticalalignment = verticalalignment.middle
# 在单元格中添加段落
paragraph = cell.addparagraph()
# 设置段落水平居中对齐
paragraph.format.horizontalalignment = horizontalalignment.center
# 向段落中添加文本
paragraph.appendtext("row 1, col 2")
# 获取第三个单元格
cell = row.cells[2]
# 设置单元格垂直居中对齐
cell.cellformat.verticalalignment = verticalalignment.middle
# 在单元格中添加段落
paragraph = cell.addparagraph()
# 设置段落水平居中对齐
paragraph.format.horizontalalignment = horizontalalignment.center
# 向段落中添加文本
paragraph.appendtext("row 1, col 3")
# 添加另一行,包含3个单元格
row = table.addrow(false, 3)
# 设置行高为20.0
row.height = 20.0
# 获取第一个单元格
cell = row.cells[0]
# 设置单元格垂直居中对齐
cell.cellformat.verticalalignment = verticalalignment.middle
# 在单元格中添加段落
paragraph = cell.addparagraph()
# 设置段落水平居中对齐
paragraph.format.horizontalalignment = horizontalalignment.center
# 向段落中添加文本
paragraph.appendtext("row 2, col 1")
# 获取第二个单元格
cell = row.cells[1]
# 设置单元格垂直居中对齐
cell.cellformat.verticalalignment = verticalalignment.middle
# 在单元格中添加段落
paragraph = cell.addparagraph()
# 设置段落水平居中对齐
paragraph.format.horizontalalignment = horizontalalignment.center
# 向段落中添加文本
paragraph.appendtext("row 2, col 2")
# 获取第三个单元格
cell = row.cells[2]
# 设置单元格垂直居中对齐
cell.cellformat.verticalalignment = verticalalignment.middle
# 在单元格中添加段落
paragraph = cell.addparagraph()
# 设置段落水平居中对齐
paragraph.format.horizontalalignment = horizontalalignment.center
# 向段落中添加文本
paragraph.appendtext("row 2, col 3")
# 将表格添加到节中
section.tables.add(table)
# 保存文档到指定路径
doc.savetofile("output/createtable.docx", fileformat.docx2013)
# 关闭文档对象
doc.close()
python 通过 html 字符串创建表格
spire.doc for python 提供了 paragraph.appendhtml() 方法,支持在 word 文档中通过 html 字符串创建表格。以下是详细步骤:
- 创建 document 类的对象。
- 使用 document.addsection() 方法向其添加一个部分。
- 指定用于生成表的 html 字符串。
- 使用 section.addparagraph() 方法添加段落。
- 使用 paragraph.appendhtml() 方法将 html 表格添加到段落中。
- 使用 document.savetofile() 方法将文档保存到 .docx 文件。
- python
# 导入 spire.doc 库
from spire.doc import *
# 导入 spire.doc.common 库
from spire.doc.common import *
# 创建一个新的文档对象
document = document()
# 在文档中添加一个节
section = document.addsection()
# 定义一个 html 表格字符串
html = "" "" "" "" \n "" "" "" \n "" "" "row 1, cell 1 row 1, cell 2 row 2, cell 2 row 2, cell 2
"
# 在节中添加一个段落
paragraph = section.addparagraph()
# 将 html 表格添加到段落中
paragraph.appendhtml(html)
# 将文档保存为 output/htmltable.docx 文件,格式为 docx2013
document.savetofile("output/htmltable.docx", fileformat.docx2013)
# 关闭文档对象
document.close()
python 合并或拆分表格中单元格
使用表格时,合并或拆分单元格的功能提供了一种强大的方法来自定义和格式化数据。此示例说明如何将相邻单元格合并为单个单元格,以及如何使用 spire.doc for python 将单个单元格拆分为多个较小的单元格。下面是详细的步骤:
- 创建 document 类的对象。
- 使用 document.addsection() 方法向其添加一个部分。
- 使用 section.addtable() 方法添加一个表。
- 使用 table.resetcells() 方法设置表的列号和行号。
- 使用 table.applyhorizontalmerge() 方法水平合并单元格。
- 使用 table.applyverticalmerge() 方法垂直合并单元格。
- 使用 tablecell.splitcell() 方法将一个单元格拆分为多个较小的单元格。
- 使用 document.savetofile() 方法将文档保存到 .docx 文件。
- python
# 导入 spire.doc 库
from spire.doc import *
# 导入 spire.doc.common 库
from spire.doc.common import *
# 创建一个新的文档对象
document = document()
# 在文档中添加一个节
section = document.addsection()
# 在节中添加一个表格
table = section.addtable()
# 重置表格的单元格数量为 4x4
table.resetcells(4, 4)
# 设置表格的首选宽度为 100%
table.preferredwidth = preferredwidth(widthtype.percentage, int(100))
# 遍历表格的所有行,设置每行的行高为 20.0
for i in range(0, table.rows.count):
table.rows[i].height = 20.0
# 合并表格的第 1 行第 1 列到第 3 列的单元格
table.applyhorizontalmerge(0, 0, 3)
# 合并表格的第 1 行第 1 列到第 3 列的单元格
table.applyverticalmerge(0, 2, 3)
# 获取表格第 2 行第 4 列的单元格
cell = table.rows[1].cells[3]
# 将第 2 行第 4 列的单元格拆分为两个单元格
cell.splitcell(3, 0)
# 设置表格第 1 行第 1 列、第 3 行第 1 列和第 2 行第 1 列的单元格的背景颜色为浅蓝色
table.rows[0].cells[0].cellformat.backcolor = color.get_lightblue()
table.rows[2].cells[0].cellformat.backcolor = color.get_lightblue()
# 设置表格第 1 行第 4 列、第 1 行第 5 列和第 1 行第 6 列的单元格的背景颜色为浅灰色
table.rows[1].cells[3].cellformat.backcolor = color.get_lightgray()
table.rows[1].cells[4].cellformat.backcolor = color.get_lightgray()
table.rows[1].cells[5].cellformat.backcolor = color.get_lightgray()
# 将文档保存为 output/mergeandsplit.docx 文件,格式为 docx2013
document.savetofile("output/mergeandsplit.docx", fileformat.docx2013)
# 关闭文档对象
document.close()
python 用 word 中数据填充表格
本示例创建一个 5x7 的表,将列表中的数据写入单元格,并对标题行和其他行应用不同的格式。以下是主要步骤:
- 创建 document 类的对象。
- 使用 document.addsection() 方法向其添加一个部分。
- 使用 section.addtable() 方法添加一个表。
- 指定用于在两个列表中填充表的数据。
- 使用 table.resetcells() 方法根据数据的高度和宽度重置表的行号和列号。
- 使用 tablecell.addparagraph().appendtext() 将数据写入相应的单元格。
- 通过 tablecell.cellformat.backcolor 属性将不同的颜色应用于不同的行。
- 使用 document.savetofile() 方法将文档保存到 .docx 文件。
- python
import math
from spire.doc import *
from spire.doc.common import *
# 创建文档对象
doc = document()
# 添加一个节
section = doc.addsection()
# 在节中添加一个表格
table = section.addtable()
# 定义表头数据
header_data = ["日期", "产品名称", "生产国家", "出口国家", "保质期"]
# 定义表格行数据
row_data = [
["08/07/2021", "海南椰汁", "中国", "韩国", "1个月"],
["08/07/2021", "咸鸭蛋", "中国", "日本", "3个月"],
["08/07/2021", "奶粉", "俄罗斯", "美国", "12个月"],
["08/08/2021", "面包", "丹麦", "中国", "3个月"],
["08/09/2021", "巧克力", "俄罗斯", "美国", "6个月"],
["08/10/2021", "金枪鱼", "日本", "美国", "15天"]
]
# 重置表格单元格数量
table.resetcells(len(row_data) 1, len(header_data))
# 设置表格的首选宽度为100%
table.preferredwidth = preferredwidth(widthtype.percentage, int(100))
# 获取表头行
headerrow = table.rows[0]
# 设置表头行为标题行,并设置高度、背景颜色等属性
headerrow.isheader = true
headerrow.height = 23
headerrow.rowformat.backcolor = color.get_lightgray()
# 遍历表头数据,设置每个单元格的垂直对齐方式、段落格式等属性
i = 0
while i < len(header_data):
headerrow.cells[i].cellformat.verticalalignment = verticalalignment.middle
paragraph = headerrow.cells[i].addparagraph()
paragraph.format.horizontalalignment = horizontalalignment.center
txtrange = paragraph.appendtext(header_data[i])
txtrange.characterformat.bold = true
txtrange.characterformat.fontsize = 12
i = 1
# 遍历表格行数据,设置每个单元格的垂直对齐方式、段落格式等属性
r = 0
while r < len(row_data):
datarow = table.rows[r 1]
datarow.height = 20
datarow.heighttype = tablerowheighttype.exactly
c = 0
while c < len(row_data[r]):
datarow.cells[c].cellformat.verticalalignment = verticalalignment.middle
paragraph = datarow.cells[c].addparagraph()
paragraph.format.horizontalalignment = horizontalalignment.center
txtrange = paragraph.appendtext(row_data[r][c])
txtrange.characterformat.fontsize = 11
c = 1
r = 1
# 遍历表格行,设置偶数行的背景颜色
for j in range(1, table.rows.count):
if math.fmod(j, 2) == 0:
row2 = table.rows[j]
for f in range(row2.cells.count):
row2.cells[f].cellformat.backcolor = color.get_lightblue()
# 设置表格边框样式、线宽和颜色
table.tableformat.borders.bordertype = borderstyle.single
table.tableformat.borders.linewidth = 1.0
table.tableformat.borders.color = color.get_black()
# 保存文档到指定路径
doc.savetofile("output/table.docx", fileformat.docx2013)
申请临时 license
如果您希望删除结果文档中的评估消息,或者摆脱功能限制,请该email地址已收到反垃圾邮件插件保护。要显示它您需要在浏览器中启用javascript。获取有效期 30 天的临时许可证。