码迷,mamicode.com
首页 > 其他好文 > 详细

读取word段落和文字块

时间:2020-06-05 23:16:09      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:graphs   内容   doc   int   from   document   读取   docx   graph   

from docx import Document

word=Document(‘,,,,,,.docx‘)

paragraphs=word.paragraphs    #返回一个列表,有多少段就有多少个值

for  i in paragraphs:

  print(i.text)      #打印每段内容

a=paragraphs[0]

for    j    in     a.runs:     #打印这一段所有的文字块

  print(j.text)   

读取word段落和文字块

标签:graphs   内容   doc   int   from   document   读取   docx   graph   

原文地址:https://www.cnblogs.com/energetic/p/13052451.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!