shelve模块

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

基本用法:

  存储数据对象  

  the_shelve = shelve.open(r"files\theShelve")
  the_shelve.setdefault("my_dict", my_dict)
  the_shelve.setdefault("friend_list", my_friend_list)
  the_shelve.setdefault("datetime", date_time)
  the_shelve.close()

 读取数据对象:  
  the_shelve = shelve.open(r"files\theShelve")
  for eachKey in the_shelve:
  print(eachKey, the_shelve[eachKey])
  the_shelve.close()

shelve对象也可以像字典一样进行操作,其方法如下
  pop,items,keys,values,get,setdefault,update等

转载于:https://www.cnblogs.com/cobra-gushao-study/p/8981119.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值