美文网首页
修改txt文件中指定内容

修改txt文件中指定内容

作者: foreversunda | 来源:发表于2019-12-24 14:30 被阅读0次

    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文件中指定内容

          本文链接:https://www.haomeiwen.com/subject/deffoctx.html