在Python中追加文本到文件

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

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

  • 使用模式a而不是w追加到文件中:

    with open('text.txt', 'a', encoding='utf-8') as file:
        file.write('Spam and eggs!')
    

    至于你的第一个问题,谷歌搜索会出现几种方法。 先试试这个问题:

    Pythonic方法来测试文件是否存在?

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

    上一篇: Append a text to file in Python

    下一篇: Python write to file without overwriting current txt