前端之家收集整理的这篇文章主要介绍了
如何在python中将搁置文件清空?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我创建了一个搁置
文件并插入了一个字典数据.现在我想清理搁置
文件以重用为干净
文件.
import shelve
dict = shelve.open("Sample.db")
# insert some data into sample.db
dict = { "foo" : "bar"}
#Now I want to clean entire shelve file to re-insert the data from begining.
Shelve的行为就像字典一样,因此:
dict.clear()
或者,您可以随时删除该文件,并让搁置创建一个新文件.
原文链接:https://www.f2er.com/python/186292.html