python-docx表格 字体大小
时间: 2023-12-17 16:56:15 浏览: 327
python_docx-0.8.11-py3-none-any.whl.zip
可以通过设置 cell.style.font.size 属性来指定表格中单元格中文字的大小,例如:
```
from docx import Document
# 打开一个 Word 文档
doc = Document('example.docx')
# 获取文档中第一个表格对象
table = doc.tables[0]
# 遍历表格的每个单元格
for row in table.rows:
for cell in row.cells:
# 设置单元格中文字的字体大小为 12
cell.style.font.size = Pt(12)
# 保存修改后的 Word 文档
doc.save('example.docx')
```
这段代码会打开名为 `example.docx` 的 Word 文档,将其中第一个表格中的所有单元格中文字的字体大小设置为 12 磅,最后保存修改后的 Word 文档。
阅读全文