如果要清空一个文件的内容,可以使用以下代码:
filename = "example.txt" # 替换为你要清空内容的文件名 with open(filename, 'w') as file: file.truncate(0)
上述代码使用了open函数来打开文件,并使用'w'参数来指定以写入模式打开文件。然后使用truncate(0)方法来清空文件的内容,将文件大小截断为0。请确保你有写入文件的权限。
open
'w'
truncate(0)