python 如何在Word中插入表格
时间: 2024-10-25 16:17:18 浏览: 13
使用Python对word批量插入图片
在Python中,通过`python-docx`库可以方便地插入和编辑Word文档中的表格。下面是如何插入一个基本表格的步骤[^1]:
```python
from docx import Document
from docx.table import Table, Cell
# 创建一个新的Word文档
doc = Document()
# 插入一个新表格
table = doc.add_table(rows=3, cols=2) # 3行2列的表格
# 设置表格的第一行标题
header_cells = table.rows[0].cells
header_cells[0].text = "Column 1"
header_cells[1].text = "Column 2"
# 设置表格的其他单元格
for row in table.rows[1:]:
row.cells[0].text = "Row data 1"
row.cells[1].text = "Row data 2"
# 保存文档
doc.save('example.docx')
```
这段代码首先导入了必要的模块,然后创建了一个新的Word文档并添加了一个3行2列的表格。你可以根据需要调整行数、列数以及单元格的内容。
阅读全文