gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-28 19:52:45 24 4
gpt4 key购买 nike

我从 here 中获取了示例代码.

f1 = open('file1.txt', 'r')
f2 = open('file2.txt', 'w')
for line in f1:
f2.write(line.replace('old_text', 'new_text'))
f1.close()
f2.close()

但我无法弄清楚如何用相应的新词替换多个词。在这个例子中,如果我想找到一些像 (old_text1,old_text2,old_text3,old_text4) 这样的词并替换为相应的新词 (new_text1,new_text2,new_text3,new_text4) .

提前致谢!

最佳答案

您可以使用 zip 遍历检查词和 toReplace words,然后替换。

例如:

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()

关于python - 查找并替换文件python中的多个单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51240862/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com