python 设置word文档中的表格字体
时间: 2023-03-31 12:01:27 浏览: 1288
用Python设置Word文档里表格的格式.rar
可以使用 python-docx 库来设置 word 文档中的表格字体。具体操作可以参考以下代码:
```python
import docx
# 打开 word 文档
doc = docx.Document('example.docx')
# 获取第一个表格
table = doc.tables[]
# 遍历表格中的每一个单元格
for row in table.rows:
for cell in row.cells:
# 获取单元格中的段落
for paragraph in cell.paragraphs:
# 获取段落中的 run
for run in paragraph.runs:
# 设置字体
run.font.name = '宋体'
run.font.size = docx.shared.Pt(12)
# 保存文档
doc.save('example.docx')
```
以上代码将文档中第一个表格中的字体设置为宋体,字号为12。你可以根据自己的需求进行修改。
阅读全文