下面的代码段不包含格式处理,仅能改变表格单元格内容。
直接在命令行输入:pip install python-docx 即可
程序中 import docx
#打开或创建word文档
doc_name = "E:\\study\\a.docx"
doc = docx.Document(doc_name)
#.....中间代码略
#获取表格,将计算出精度指标填入word文档
#word中第1个表格为doc.tables[0]
table = doc.tables[j + 3 * i + 1]
# 对表格的第Trow行,第1、2、3、5列单元格填写数据
#bias等浮点型数据四舍五入保留小数点后两位
table.cell(Trow, 1).text = "%.2f" % bias
table.cell(Trow, 2).text = "%.2f" % biasabs
table.cell(Trow, 3).text = "%.2f" % rmse
table.cell(Trow, 5).text = "%.2f" % dc
#保存对word表格做的改变
new_doc_name = "E:\\study\\a1.docx"
doc.save(new_doc_name)