資源簡(jiǎn)介
需安裝 pip install python_docx
生成的word文檔如下
代碼片段和文件信息
from?docx?import?Document
from?docx.shared?import?Inches
document?=?Document()
document.add_heading(‘Document?title‘?0)
p?=?document.add_paragraph(‘A?plain?paragraph?having?some?‘)
p.add_run(‘bold‘).bold?=?True
p.add_run(‘?and?some?‘)
p.add_run(‘italic.‘).italic?=?True
document.add_heading(‘Heading?level?1‘?level=1)
document.add_paragraph(‘Intense?quote‘?style=‘Intense?Quote‘)
document.add_paragraph(
????‘first?item?in?unordered?list‘?style=‘List?Bullet‘
)
document.add_paragraph(
????‘first?item?in?ordered?list‘?style=‘List?Numbe
評(píng)論
共有 條評(píng)論