PHP前端开发

如何使用 Python Shelve 模块删除文件中的关键字和所有关键字?

百变鹏仔 5天前 #Python
文章标签 关键字

python shelve 模块

shelve 模块允许你将 python 对象持久化到文件中,以便稍后检索。那么,如何删除 shelve 文件中的关键字和所有关键字呢?

删除指定关键字

要删除特定的键值对,可以使用 del 语句:

立即学习“Python免费学习笔记(深入)”;

import shelve# 打开 shelve 文件with shelve.open('qwer') as qwer:    # 删除键 'www'    del qwer['www']

删除所有关键字

要删除 shelve 文件中的所有键值对,可以使用 clear() 方法:

import shelve# 打开 shelve 文件with shelve.open('qwer') as qwer:    # 清除所有键值对    qwer.clear()