shelve模块

Posted zhangdajin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了shelve模块相关的知识,希望对你有一定的参考价值。

shevle:可以用字典存取数据到文件的序列化模块

shevle只有一个open函数,返回类似字典的对象,可读可写;key必须为字符串,而值可以是python所支持的数据类型

# 将序列化文件操作dump与load进行封装
s_dic = shelve.open("target_file", writeback=True) # 注:writeback允许序列化的可变类型,可以直接修改值
# 序列化::存
s_dic[‘key1‘] = [1, 2, 3, 4, 5]
s_dic[‘key2‘] = ‘name‘: ‘Bob‘, ‘age‘: 18

s_dic[‘key1‘][2] = 30

s_dic[‘key2‘][‘age‘] = 20
# 反序列化:取
print(s_dic[‘key1‘])
# 文件这样的释放
s_dic.close()

以上是关于shelve模块的主要内容,如果未能解决你的问题,请参考以下文章

day5-shelve模块

shelve和hashlib模块

day⑥:shelve模块

day6 shelve模块

13.4 Shelve模块

常用模块:re ,shelve与xml模块