我試圖在日誌文件中的日期標記前添加一行。日誌文件中的新行
我:
打開日誌文件:
f = open("C:\Users\user\Desktop\Log.file")
添加新行的日期 「25/01/2012」 的前面(唯一標識每個日誌行)。
f.write("\n" + "25/01/2012")
錯誤:
Traceback (most recent call last):
File "<pyshell#4>", line 1, in <module>
f.write('\n' + "25/01/2012")
IOError: File not open for writing
你的意思是你想要在文件中間插入一行? –