在python 3中写入文本文件的末尾

这个问题在这里已经有了答案:

  • 你如何追加到一个文件? 8个答案

  • append mode打开文件

    open(filename, 'a')
    

    只需使用追加模式:

    with open('something.txt', 'a') as f:
        f.write('text to be appended')
    

    文档可以在这里找到。


    用类似的东西打开你的文件

    f = open('myfile.log', 'a')
    

    您还可以检查文档以获取更多选择

    链接地址: http://www.djcxy.com/p/42397.html

    上一篇: Writing to the end of a text file in python 3

    下一篇: Write to CSV on first empty line