美文网首页python
python 标准库之shelve

python 标准库之shelve

作者: MR_LiY | 来源:发表于2018-12-17 22:36 被阅读5次

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()

相关文章

网友评论

    本文标题:python 标准库之shelve

    本文链接:https://www.haomeiwen.com/subject/eoyhkqtx.html