在Python中,可以使用以下方法清空文件:
(图片来源网络,侵删)
1、打开文件并立即ref="https://xwenw.com/tag/%e5%85%b3%e9%97%ad" target="_blank">关闭,这将删除文件中的所有内容。
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
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。
评论(0)