在Python中,可以使用以下方法清空文件:
1、打开文件并立即关闭,这将删除文件中的所有内容。
with open("file.txt", "w") as file: pass
2、使用os
模块的truncate()
函数清空文件。
import os with open("file.txt", "r+") as file: os.truncate(file.fileno(), 0)
3、使用open()
函数以写入模式打开文件,然后立即关闭。
with open("file.txt", "w") as file: pass
4、使用shutil
模块的copyfile()
函数将一个空文件复制到原文件,从而清空原文件。
import shutil shutil.copyfile("empty_file.txt", "file.txt")
5、使用os
模块的remove()
函数删除文件,然后重新创建一个空文件。
import os os.remove("file.txt") with open("file.txt", "w") as file: pass
原创文章,作者:未希,如若转载,请注明出处:https://www.kdun.com/ask/471480.html
本网站发布或转载的文章及图片均来自网络,其原创性以及文中表达的观点和判断不代表本网站。如有问题,请联系客服处理。
发表回复