修改txt文件中指定内容

2019-12-24  本文已影响0人  foreversunda

import re

f=open('222.txt','r')

alllines=f.readlines()

f.close()

f=open('222.txt','w+')

for eachline in alllines:

    a=re.sub('123','123-123',eachline)

    f.writelines(a)

f.close()

222.txt中的内容  修改前

adb

qwe

123

222.txt中的内容  修改后

adb

qwe

123-123

上一篇下一篇

猜你喜欢

热点阅读