我有要在 Python 中删除的文本文件。我怎么做?
在蟒蛇中:
open('file.txt', 'w').close()
或者,如果您已经打开了一个文件:
f = open('file.txt', 'r+') f.truncate(0) # need '0' when using r+