编写一个读取大文件txt内容,然后按行替换特定字符串并写入原文件的pyhton脚本
时间: 2023-03-07 08:22:56 浏览: 122
FileSort_python读取Landsat影像_按时间排序_
我可以提供一些帮助。下面是Python脚本的示例:with open('filename.txt', 'r') as f:
lines = f.readlines()with open('filename.txt', 'w') as f_out:
for line in lines:
line = line.replace('old string', 'new string')
f_out.write(line)
阅读全文