码迷,mamicode.com
首页 > 其他好文 > 详细

shelve模块

时间:2017-06-10 16:59:41      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:python   div   website   class   logs   info   pen   key   name   

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模块

标签:python   div   website   class   logs   info   pen   key   name   

原文地址:http://www.cnblogs.com/wangkc/p/6978876.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!