Python基础-shelve

Posted xudachen

tags:

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

shelve模块是一个简单的k,v将内存数据通过文件持久化的模块,可以持久化任何pickle可支持的python数据格式

 

关键是支持多次读写 和更改操作

序列化:

import shelve

f = shelve.open(‘shelve_test‘)  # 打开一个文件



names = ["alex", "rain", "test"]
info = {‘name‘:‘alex‘,‘age‘:22}


f["names"] = names  # 持久化列表
f[‘info_dic‘] = info

f.close()

反序列化:

import shelve

d = shelve.open(‘shelve_test‘)  # 打开一个文件

print(d[‘names‘])
print(d[‘info_dic‘])


#del d[‘test‘] #还可以删除

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

python基础 sys shutile shelve模块

我的Python成长之路---第六天---Python基础(19)---2016年2月20日(晴)

Python基础(12)_python模块之sys模块logging模块序列化json模块pickle模块shelve模块

Python基础(20)——常用模块sys,os,json,pickle,shelve,xml,re,basedir

python shelve 模块

python学习----8.13-shelve-xml-configparser-hashlib