shelve模块

Posted 鸿飞冥冥

tags:

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

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

import shelve

f=shelve.open(r‘sheve.txt‘)
# f[‘stu1_info‘]={‘name‘:‘egon‘,‘age‘:18,‘hobby‘:[‘piao‘,‘smoking‘,‘drinking‘]}
# f[‘stu2_info‘]={‘name‘:‘gangdan‘,‘age‘:53}
# f[‘school_info‘]={‘website‘:‘http://www.pypy.org‘,‘city‘:‘beijing‘}

print(f[‘stu1_info‘][‘hobby‘])
f.close()

  

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

shelve模块和xml模块

13.4 Shelve模块

Python模块-shelve模块

day5-shelve模块

day⑥:shelve模块

shelve和hashlib模块