如何在python中将搁置文件清空?

前端之家收集整理的这篇文章主要介绍了如何在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

猜你在找的Python相关文章