import shutil
import docx
import openpyxl
'''
读取excel数据,并对docx文档中对应数据进行修改后保存。
'''
# 定义一个函数,用字典中的值文本替换给定文本中对应的键本文
def replace_value(to_replace_str, to_date_dict):
for item_key in to_date_dict.keys():
# 字符串中查找是否包含key值
index = to_replace_str.find(item_key)
# 如果不包含则直接跳过,包含的话对字符串中所有的键文本替换为值文本
if index == -1:
pass
else:
to_replace_str = to_replace_str
python-读取excel数据并对word中内容进行替换
最新推荐文章于 2024-09-09 09:02:59 发布
本文介绍如何使用Python读取Excel文件中的数据,并将这些数据应用于Word文档,实现内容的批量替换。首先,我们将使用pandas库读取Excel文件,接着利用python-docx库修改Word文档中的文本。
摘要由CSDN通过智能技术生成