python遍历文件并替换

有时候碰到需要批量替换文件中的字符串,用比较简短的python代码操作一下。

import os

filepath = '...'
lines = open(filepath).readlines()
fp = open(filepath,'w')
for s in lines:
    fp.write( s.replace('orginString', 'targetString'))
fp.close()

你可能感兴趣的:(python遍历文件并替换)