使用字典替换文本文件中的单词

使用字典替换文本文件中的单词,第1张

使用字典替换文本文件中的单词

我用

items()
遍历
key
values
您的
fields
字典。

我跳过空白行,

continue
并用清理其他行
rstrip()

我用您的字典

keys
中的替换
line
values
在中找到的
fields
所有行,并用编写了每一行
print

import fileinputtext = "sample file.txt"fields = {"pattern 1": "replacement text 1", "pattern 2": "replacement text 2"}for line in fileinput.input(text, inplace=True):    line = line.rstrip()    if not line:        continue    for f_key, f_value in fields.items():        if f_key in line: line = line.replace(f_key, f_value)    print line


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

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

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-18
下一篇 2022-11-17

发表评论

登录后才能评论

评论列表(0条)

保存