如何检查文件的第一行是否被占用?
f = open('whatever.txt','w')
f.write('first line')
f.close()
f = open('whatever.txt','w')
f.write('second line')
f.close()
第二行只是覆盖。
谢谢!
答案 0 :(得分:3)
第二次使用'a'
作为模式参数,以便它附加而不是覆盖。请参阅`open()`` built-in function's documentation。
答案 1 :(得分:1)
'w'以写入模式打开文件。使用'a'作为追加模式。