zoukankan      html  css  js  c++  java
  • python读写word文档

    读:  

      from docx import Document
      dir_docx = 'F:EclipseworkspaceSpidercnblogs_docmytest - 副本.docx'
      dir_docx = dir_docx.decode('utf-8')
      document = Document(dir_docx)
      for p in document.paragraphs:
        print p.text

      注意:docx的名称不能是中文,否则报错:docx.opc.exceptions.PackageNotFoundError

    写:(官方文档:https://python-docx.readthedocs.io/en/latest/)

    from docx import Document
    from docx.shared import Inches
    
    document = Document()
    
    document.add_heading('Document Title', 0)
    
    p = document.add_paragraph('A plain paragraph having some ')
    p.add_run('bold').bold = True
    p.add_run(' and some ')
    p.add_run('italic.').italic = True
    
    document.add_heading('Heading, level 1', level=1)
    document.add_paragraph('Intense quote', style='IntenseQuote')
    
    document.add_paragraph(
        'first item in unordered list', style='ListBullet'
    )
    document.add_paragraph(
        'first item in ordered list', style='ListNumber'
    )
    
    document.add_picture('monty-truth.png', width=Inches(1.25))
    
    table = document.add_table(rows=1, cols=3)
    hdr_cells = table.rows[0].cells
    hdr_cells[0].text = 'Qty'
    hdr_cells[1].text = 'Id'
    hdr_cells[2].text = 'Desc'
    for item in recordset:
        row_cells = table.add_row().cells
        row_cells[0].text = str(item.qty)
        row_cells[1].text = str(item.id)
        row_cells[2].text = item.desc
    
    document.add_page_break()
    
    document.save('demo.docx')
  • 相关阅读:
    字符串(url)拼接变量
    elementUI table数据显示效果(二)
    异常(转)
    PHP 的异常处理、错误的抛出及错误回调函数 (转)
    详细解读PHP类的封装 (转)
    什么是抽象类
    什么是类,什么是对象,类和对象之间的关系
    魔术方法
    类的声名
    self
  • 原文地址:https://www.cnblogs.com/SZxiaochun/p/7085148.html
Copyright © 2011-2022 走看看