欢迎来到代码驿站!

Python代码

当前位置:首页 > 软件编程 > Python代码

Python 实现向word(docx)中输出

时间:2022-02-03 10:32:09|栏目:Python代码|点击:

安装python-docx

pip install python-docx

如果python2安装后不能使用(找不到包),建议直接使用python3,安装代码如下

pip3 install python-docx

from docx import Document
from docx.shared import Pt
 
# 简单的打开word,输入数据,关闭word
document = Document()
# 向word里增加段落
document.add_paragraph('hello')
document.save('test.docx')
 
 
# 在一个段落中增加文字
document = Document()
paragraph = document.add_paragraph('Normal text, ')
# 增加文字
paragraph.add_run('add text')
 
# 设置word字体大小
style = document.styles['Normal']
font = style.font
font.size = Pt(10)
document.save('test.docx')

上一篇:python利用opencv如何实现答题卡自动判卷

栏    目:Python代码

下一篇:python 列表元素左右循环移动 的多种解决方案

本文标题:Python 实现向word(docx)中输出

本文地址:http://www.codeinn.net/misctech/192181.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有