python-docx对于word中表格的结构布局,Document - Table - Row/Column - Cell四级结构。
1 创建word
from docx import Document
file = Document()
如果不指定路径则会默认创建新的文件,
2 保存word文件
file.save('****')
****中存放需要保存的路径
3 添加标题、
file.add_heading(***, level=***)
level 1-10级,***中可填标题内容
4 添加段落
file.add_paragraph(***)
5 添加文字块
file.add_run(***)
转自:https://zhuanlan.zhihu.com/p/258763983