1 以读的方式打开源文件,以写的方式打开一个临时文件

2 从源文件中每读一样内容修改完毕后写入临时文件,直到源文件读取完毕

3 删掉源文件,将临时文件重命名为源文件名


优点: 同一时刻在内存中只存在源文件的一行内容,不会过多地占用内存

缺点: 在文件修改的过程中会出现源文件与临时文件共存,硬盘上同一时刻会有两份数据,即在修改的过程中会过多的占用硬盘,



import os

with open('d.txt',mode='rt',encoding='utf-8') as read_f,open('.d.txt.swap',mode='wt',encoding='utf-8') as write_f:

for line in read_f:

write_f.write(line.replace('alex','dsb'))

os.remove('d.txt')

os.rename('.d.txt.swap','d.txt')