美文网首页
python 修改文件内某一行的操作

python 修改文件内某一行的操作

作者: ikaroskun | 来源:发表于2016-12-19 09:59 被阅读1851次

    eg:

    properties=open("text.txt",'r+')

    lines=properties.readlines()

    d=""

    forlineinlines:

    c=line.replace("my name is abc","my name is efg")

    d+=c

    properties.seek(0)#不要让python记住执行到这里,从文件头还始

    properties.truncate()#清空文件

    properties.write(d)

    properties.close()

    相关文章

      网友评论

          本文标题:python 修改文件内某一行的操作

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