2013年8月19日 星期一

附加文字到檔案

with open("test.txt", "a") as myfile:
    myfile.write("appended text")


參考
http://stackoverflow.com/questions/4706499/how-do-you-append-to-file-in-python

沒有留言: