写入文件(python)

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

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

  • 使用

    f = open('masters.txt', 'a')
    

    代替

    编辑:看到这里


    f = open('masters.txt', 'a')


    以'w'模式打开文件会删除所有内容,然后写入新内容。 我已经学会了这一难题;)

    无论如何,你应该以'a'模式(append)打开它,看起来像这样:

    f = open("masters.txt", 'a')
    f.writelines(args, "n")
    f.close()
    
    链接地址: http://www.djcxy.com/p/42399.html

    上一篇: Writing to a file (python)

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