依賴包:python-docx
pip install python-docx
官方文檔:
https://python-docx.readthedocs.io/en/latest/index.html
官方實(shí)例非常簡潔清晰的展示了python-docx生成的文檔所包含的大部分功能:各級標(biāo)題、增加圖片稻轨、添加表格
如下介紹三種其他常用配置
from docx.shared import Inches,RGBColor,Pt
from docx.enum.text import WD_ALIGN_PARAGRAPH
from docx.oxml.ns import qn
doc = Document()
#1設(shè)置字體為微軟雅黑 只锻,其他字體配置可在文檔中找
doc.styles['Normal'].font.name = '微軟雅黑'
doc.styles['Normal']._element.rPr.rFonts.set(qn('w:eastAsia'),'微軟雅黑')
# 標(biāo)題
p = doc.add_heading('標(biāo)題',1)
#2設(shè)置文本居中
p.paragraph_format.alignment = WD_ALIGN_PARAGRAPH.CENTER
#3設(shè)置字體顏色
color_red = RGBColor(*(255,0,0))
p.add_run('我是紅色').font.color.rgb = color_red