编写一个将txt内容按行读取并按行替换特定字符串的python脚本
时间: 2023-03-07 09:22:56 浏览: 178
python读取txt文件中特定位置字符的方法
答:可以使用以下Python脚本来实现:with open('file.txt', 'r') as f:
for line in f:
# Replace the string with another string
line = line.replace('old string', 'new string')
print line
阅读全文