gpt4 book ai didi

python-docx - 在 python docx 中创建表格并加粗文本

转载 作者:行者123 更新时间:2023-12-03 02:43:15 55 4
gpt4 key购买 nike

doc=Document()
table = doc.add_table(rows = 13, cols = 5)
table.style = 'Table Grid'
row = table.rows[0]
row.cells[0].text = ('text').bold

我正在尝试创建一个表格并将文本加粗,但无法获得正确的语法

最佳答案

单元格上的 .text 方法只是将单元格内容设置为“纯文本”。如果您想格式化该文本的字体(例如将其设置为粗体),则必须在运行级别访问该文本。类似这样的东西会起作用,但最好让您深入研究文档并理解原因:) http://python-docx.readthedocs.org/en/latest/user/text.html#apply-character-formatting

cell = row.cells[0]
cell.text = "text"
run = cell.paragraphs[0].runs[0]
run.font.bold = True

关于python-docx - 在 python docx 中创建表格并加粗文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36894424/

55 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com