python操作word表格
时间: 2023-07-29 15:10:32 浏览: 99
python自动化办公之操作word
要在Python中操作Word表格,可以使用Python-docx库。以下是一个简单示例,演示如何在Word文档中创建表格并填充数据:
```python
# 导入库
from docx import Document
from docx.shared import Inches
# 创建文档对象
doc = Document()
# 创建表格对象
table = doc.add_table(rows=3, cols=3)
# 填充表格数据
table.cell(0, 0).text = '姓名'
table.cell(0, 1).text = '年龄'
table.cell(0, 2).text = '性别'
table.cell(1, 0).text = '小明'
table.cell(1, 1).text = '18'
table.cell(1, 2).text = '男'
table.cell(2, 0).text = '小红'
table.cell(2, 1).text = '20'
table.cell(2, 2).text = '女'
# 保存文档
doc.save('example.docx')
```
这个示例创建了一个3行3列的表格,并填充了一些数据。你可以根据自己的需求来修改表格的大小、样式和内容。
阅读全文