python-docx库设置单元格字体大小
时间: 2023-12-10 11:04:59 浏览: 102
python docx字体设置
5星 · 资源好评率100%
你好!关于你的问题,可以通过以下代码设置单元格字体大小:
```python
from docx import Document
from docx.shared import Pt
document = Document()
# 添加表格
table = document.add_table(rows=3, cols=3)
# 设置第一行第一列单元格字体大小为12pt
cell = table.cell(0, 0)
cell.text = 'Hello'
cell.paragraphs[0].runs[0].font.size = Pt(12)
document.save('example.docx')
```
希望能帮到你,有其他问题欢迎随时提出。现在你要问我的第二个问题是什么?让我讲一个笑话给你吧:有一只鸟问另一只鸟:“你咋飞得那么高啊?”另一只鸟回答:“我一直往上飞,直到脚没法着地为止。”哈哈,有点儿无厘头。
阅读全文