python实现生成Word、docx文件的方法分析


Posted in Python onAugust 30, 2019

本文实例讲述了python实现生成Word、docx文件的方法。分享给大家供大家参考,具体如下:

http://python-docx.readthedocs.io/en/latest/index.html

生成word的利器!

一、快速开始

from docx import Document
document = Document()

1、段落

加一个段落,下面paragraph 是前面内容的光标指向,后面再该处插入一句话。

paragraph = document.add_paragraph('Lorem ipsum dolor sit amet.')
prior_paragraph = paragraph.insert_paragraph_before('Lorem ipsum')

后面加一句话

paragraph = document.add_paragraph('Lorem ipsum ')
paragraph.add_run('dolor sit amet.')

添加段落风格

document.add_paragraph('Lorem ipsum dolor sit amet.', style='ListBullet')

使用blod、italic 等等

paragraph = document.add_paragraph('Lorem ipsum ')
run = paragraph.add_run('dolor')
run.bold = True
run.italic = True
paragraph.add_run('dolor').bold = True

2、标题

level表示标题的大小

document.add_heading('The role of dolphins', level=2)

3、分页

document.add_page_break()

4、表格

table = document.add_table(rows=2, cols=2)

访问方法:

取出来,单独赋值

cell = table.cell(0, 1)
cell.text = 'parrot, possibly dead'

依然使用二维数组类似的索引。

row = table.rows[1]
row.cells[0].text = 'Foo bar to you.'
row.cells[1].text = 'And a hearty foo bar to you too sir!'

分清楚结构

for row in table.rows:
  for cell in row.cells:
    print(cell.text)

查看信息

row_count = len(table.rows)
col_count = len(table.columns)

添加一行

row = table.add_row()

动态添加表格

table = document.add_table(1, 3)
# 标题
heading_cells = table.rows[0].cells
heading_cells[0].text = 'Qty'
heading_cells[1].text = 'SKU'
heading_cells[2].text = 'Description'
# 添加内容
for item in items:
  cells = table.add_row().cells
  cells[0].text = str(item.column1)
  cells[1].text = item.column2
  cells[2].text = item.column3

5、添加图片

from docx.shared import Inches
document.add_picture('image-filename.png', width=Inches(1.25), height=Inches(1.25))

二、操作document

只能打开07之后的,会覆盖。

document = Document('existing-document-file.docx')
document.save('new-file-name.docx')

打开文件

f = open('foobar.docx', 'rb')
document = Document(f)
f.close()
# or
with open('foobar.docx', 'rb') as f:
  source_stream = StringIO(f.read())
document = Document(source_stream)
source_stream.close()
...
target_stream = StringIO()
document.save(target_stream)

三、操作text

段落居中

from docx.enum.text import WD_ALIGN_PARAGRAPH
document = Document()
paragraph = document.add_paragraph()
paragraph_format = paragraph.paragraph_format
paragraph_format.alignment = WD_ALIGN_PARAGRAPH.CENTER

左边整体缩进

from docx.shared import Inches
paragraph = document.add_paragraph()
paragraph_format = paragraph.paragraph_format
paragraph_format.left_indent = Inches(0.5)

右边整体缩进

from docx.shared import Pt
paragraph_format.right_indent = Pt(24)

首行缩进

paragraph_format.first_line_indent = Inches(-0.25)

从字体调节,字体大小

run = document.add_paragraph().add_run()
font = run.font
from docx.shared import Pt
font.size = Pt(10.5) # 5号字体
font.italic = True
font.underline = True

字体颜色

from docx.shared import RGBColor
font.color.rgb = RGBColor(0x42, 0x24, 0xE9)

希望本文所述对大家Python程序设计有所帮助。

Python 相关文章推荐
Python中变量交换的例子
Aug 25 Python
python实现一次创建多级目录的方法
May 15 Python
Python中的ctime()方法使用教程
May 22 Python
Windows下实现Python2和Python3两个版共存的方法
Jun 12 Python
Python中is与==判断的区别
Mar 28 Python
Python单例模式的两种实现方法
Aug 14 Python
Python基于PyGraphics包实现图片截取功能的方法
Dec 21 Python
Python操作MySQL数据库的方法
Jun 20 Python
深入了解Django中间件及其方法
Jul 26 Python
详解python路径拼接os.path.join()函数的用法
Oct 09 Python
Python函数的定义方式与函数参数问题实例分析
Dec 26 Python
Django数据模型中on_delete使用详解
Nov 30 Python
python解析yaml文件过程详解
Aug 30 #Python
详细整理python 字符串(str)与列表(list)以及数组(array)之间的转换方法
Aug 30 #Python
python数据持久存储 pickle模块的基本使用方法解析
Aug 30 #Python
python 命令行传入参数实现解析
Aug 30 #Python
Python 在OpenCV里实现仿射变换—坐标变换效果
Aug 30 #Python
python在OpenCV里实现投影变换效果
Aug 30 #Python
python 模拟贷款卡号生成规则过程解析
Aug 30 #Python
You might like
php设计模式 Template (模板模式)
2011/06/26 PHP
PHP基于GD库的缩略图生成代码(支持jpg,gif,png格式)
2014/06/19 PHP
PHP实现抽奖功能实例代码
2020/06/30 PHP
jqGrid增加时--判断开始日期与结束日期(实例解析)
2013/11/08 Javascript
JavaScript中Math对象方法使用概述
2014/01/02 Javascript
JS判断、校验MAC地址的2个实例
2014/05/05 Javascript
Visual Studio中js调试的方法图解
2014/06/30 Javascript
Nodejs全栈框架StrongLoop推荐
2014/11/09 NodeJs
JS网页在线获取鼠标坐标值的方法
2015/02/28 Javascript
详述JavaScript实现继承的几种方式(推荐)
2016/03/22 Javascript
详解Angular开发中的登陆与身份验证
2016/07/27 Javascript
js实现点击按钮弹出上传文件的窗口
2016/12/23 Javascript
react.js 获取真实的DOM节点实例(必看)
2017/04/17 Javascript
详解如何构建Angular项目目录结构
2017/07/13 Javascript
微信小程序实现换肤功能
2018/03/14 Javascript
Js中将Long转换成日期格式的实现方法
2018/06/05 Javascript
vue.js input框之间赋值方法
2018/08/24 Javascript
swiper在vue项目中loop循环轮播失效的解决方法
2018/09/15 Javascript
详解关于Vue2.0路由开启keep-alive时需要注意的地方
2018/09/18 Javascript
详解express使用vue-router的history踩坑
2019/06/05 Javascript
手把手带你搭建一个node cli的方法示例
2020/08/07 Javascript
python中的错误处理
2016/04/10 Python
Python多线程实现同步的四种方式
2017/05/02 Python
Pycharm技巧之代码跳转该如何回退
2017/07/16 Python
python实现转盘效果 python实现轮盘抽奖游戏
2019/01/22 Python
python协程之动态添加任务的方法
2019/02/19 Python
Python向excel中写入数据的方法
2019/05/05 Python
python networkx 包绘制复杂网络关系图的实现
2019/07/10 Python
python自动生成model文件过程详解
2019/11/02 Python
Python函数式编程指南:对生成器全面讲解
2019/11/19 Python
HTML5 Web 存储详解
2016/09/16 HTML / CSS
Linux如何命名文件--使用文件名时应注意
2014/05/29 面试题
求职信的最佳写作思路
2014/02/01 职场文书
元旦联欢会主持词
2014/03/26 职场文书
2016年度创先争优活动总结
2016/04/05 职场文书
2021-4-5课程——SQL Server查询【3】
2021/04/05 SQL Server