我可以使用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')
答案 0 :(得分:1)
实际上,它适用于:
heading_cells[0].text = 'σ'