吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1012|回复: 0
收起左侧

[求助] 一段excel导出信息到word的代码,为什么会信息替换不全?

[复制链接]
wenclick 发表于 2020-3-10 12:15
from docx import Document
import xlrd


def change_text(old_text, new_text):
    all_paragraphs = document.paragraphs
    for paragraph in all_paragraphs:
        for run in paragraph.runs:
            run_text = run.text.replace(old_text, new_text)
            run.text = run_text

    all_tables = document.tables
    for table in all_tables:
        for row in table.rows:
            for cell in row.cells:
                cell_text = cell.text.replace(old_text, new_text)
                cell.text = cell_text


xlsx = xlrd.open_workbook('表格.xlsx')
sheet = xlsx.sheet_by_index(0)

for table_row in range(1, sheet.nrows):
    document = Document("模版.docx")
    for table_col in range(0, sheet.ncols):
        change_text(str(sheet.cell_value(0, table_col)), str(sheet.cell_value(table_row, table_col)))

        document.save("%s表.docx" % str(sheet.cell_value(table_row, 0)))
        print("%s表完成" % str(sheet.cell_value(table_row, 0)))



程序能顺利运行,但是信息经常导出替换不全,excel和word换一下标记有时又可以了,求帮忙改进一下

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-26 19:23

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表