shelve模块

Posted 云中王

tags:

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

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

import shelve
 
f = shelve.open(rshelve.txt)
 
# f[‘stu1_info‘]={‘name‘:‘alex‘,‘age‘:‘18‘}
# f[‘stu2_info‘]={‘name‘:‘alvin‘,‘age‘:‘20‘}
# f[‘school_info‘]={‘website‘:‘oldboyedu.com‘,‘city‘:‘beijing‘}
#
#
# f.close()
 
print(f.get(stu_info)[age])

 

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

shelve模块和xml模块

13.4 Shelve模块

Python模块-shelve模块

day5-shelve模块

day⑥:shelve模块

shelve和hashlib模块