标签: python
我想删除 data.txt 文件中的所有数据:
我该怎么做?
答案 0 :(得分:2)
with open('data.txt', 'w'): pass
这将删除'data.txt'的内容,留下空文件。 (这也适用于Python3。)
'data.txt'
答案 1 :(得分:1)
只需:open(file,'w').close()
open(file,'w').close()
答案 2 :(得分:0)
open(file, 'w')可以为您效劳。不要忘记关闭文件或使用with。
open(file, 'w')
with