在文件python中查找并替换多个单词

在文件python中查找并替换多个单词,第1张

在文件python中查找并替换多个单词

您可以遍历检查字词,并使用

zip
替换到替换词。

例如:

checkWords = ("old_text1","old_text2","old_text3","old_text4")repWords = ("new_text1","new_text2","new_text3","new_text4")for line in f1:    for check, rep in zip(checkWords, repWords):        line = line.replace(check, rep)    f2.write(line)f1.close()f2.close()


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5617950.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存