如何检查文件的第一行是否被占用?
f = open('whatever.txt','w')
f.write('first line')
f.close()
f = open('whatever.txt','w')
f.write('second line')
f.close()
第二行只是覆盖。
谢谢!
如何检查文件的第一行是否被占用?
f = open('whatever.txt','w')
f.write('first line')
f.close()
f = open('whatever.txt','w')
f.write('second line')
f.close()
第二行只是覆盖。
谢谢!
第二次'a'
用作您的模式参数,以便它追加而不是覆盖。请参阅`open()` 内置函数的文档。
'w' 以写入模式打开文件。使用 'a' 表示附加模式。