📜  将为您提供输入 I 的文件路径、输出 O 的文件路径、字符串 S 和字符串 T. - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:04.207000             🧑  作者: Mango

代码示例1
file1 = open(I, 'r')
Icontent = file1.read()
editedData = Icontent.replace(S, T)
file2 = open(O, 'w')
file2.write(editedData)
file1.close()
file2.close()