gpt4 book ai didi

python - 如何在 Python 中删除文本文件的文件内容?

转载 作者:IT老高 更新时间:2023-10-28 21:09:08 25 4
gpt4 key购买 nike

我有想要在 Python 中删除的文本文件。我该怎么做?

最佳答案

在python中:

open('file.txt', 'w').close()

或者,如果您已经打开了一个文件:

f = open('file.txt', 'r+')
f.truncate(0) # need '0' when using r+

关于python - 如何在 Python 中删除文本文件的文件内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2769061/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com