猿问

如何在Python中追加文件?

如何在Python中追加文件?

如何附加到文件而不是覆盖它?是否有附加到文件的特殊功能?



米琪卡哇伊
浏览 1736回答 4
4回答

犯罪嫌疑人X

我总是这样做,f = open('filename.txt', 'a')f.write("stuff")f.close()它很简单,但非常有用。

慕哥6287543

Python有三种主要模式的变体,这三种模式是:'w'   write text'r'   read text'a'   append text因此,要附加到文件,它就像以下一样简单:f = open('filename.txt', 'a') f.write('whatever you want to write here (in append mode) here.')然后有一些模式只会使你的代码更少的行:'r+'  read + write text'w+'  read + write text'a+'  append + read text最后,还有二进制格式的读/写模式:'rb'  read binary'wb'  write binary'ab'  append binary'rb+' read + write binary'wb+' read + write binary'ab+' append + read binary
随时随地看视频慕课网APP

相关分类

Python
我要回答