Python-docx,我可以在表中编写符号吗?

时间:2017-03-28 08:48:15

标签: ms-word python-docx

我可以使用Python-docx在表格的单元格内编写符号吗?让我们说σ(西格玛)。到目前为止,我得到了:

from docx import Document

document = Document()
table = document.add_table(rows=2, cols=2)
table.style = 'TableGrid' #single lines in all cells

heading_cells = table.rows[0].cells 
heading_cells[0].text = '\sigma'

document.save('test.docx')

1 个答案:

答案 0 :(得分:1)

实际上,它适用于:

heading_cells[0].text = 'σ'