修改txt文件中指定内容

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

你可能感兴趣的:(修改txt文件中指定内容)