Office 2013 / 2016 / 2019 ProPlus Retail零售版密钥上架

python-docx基本使用方法

Python

更新于:

0x00 概述

帮朋友个忙

0x01 开整

import xlrd
from docx import Document
from docx.enum.text import WD_PARAGRAPH_ALIGNMENT, WD_LINE_SPACING
from docx.oxml.ns import qn
from docx.shared import Pt
from docx.shared import RGBColor
from docx.shared import Inches
from docx.shared import RGBColor
from docx.shared import Cm
from docx.oxml import parse_xml
from docx.oxml.ns import nsdecls

# 打开excel文件
_doc = Document()
# 新增段落
_p = _doc.add_paragraph()
# 设置居中
_p.alignment = WD_PARAGRAPH_ALIGNMENT.CENTER
# 写入刚才新增段落内容
_run = _p.add_run('激活码')
# 设置加粗
_run.bold = True
# 设置字体大小
_run.font.size = Pt(18)
# 设置字体
_run.font.name = u'微软雅黑'
# 设置字体颜色
_run.font.color.rgb = RGBColor(0, 0, 0)
# 设置字体,这个才生效
_run.element.rPr.rFonts.set(qn('w:eastAsia'), u'微软雅黑')
# 插入表格
_doc_table = _doc.add_table(rows=28, cols=4, style='Table Grid')
# 合并单元格
_doc_table.cell(0, 1).merge(_doc_table.cell(2, 3))
# 保存文件
_doc.save('jihuo.docx')

0xff 完结撒花

 

转载请注明:【python-docx基本使用方法】https://jihuo.ma/python-docx.html

@楼主 昵称
评论