博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python json、shelve、pickle模块
阅读量:5081 次
发布时间:2019-06-12

本文共 626 字,大约阅读时间需要 2 分钟。

json可以序列化多次但是反序列化只能反序列化一次,shelve可以多次写入,存取也比较方便

1. shelve模块是一个简单的k,v将内存数据通过文件持久化的模块,可以持久化任何pickle可支持的python数据格式

import shelved = shelve.open("mydbase")name = ["zhangsan","lisi","wangmz"] d["test"] = name #持久化列表d["age"] = 20 d.close()
import shelvedbase = shelve.open("mydbase")print(dbase.keys())print(dbase['test'])for i in dbase:    print(i)d.close()

2. json模块

#json序列化import jsona = {
"tony":22, 'james':34}with open('text.txt','w') as f: f.write(json.dumps(a))#json反序列化import jsonwith open('text.txt', 'r') as f: x = json.load(f) print(x["james"])

 3. pickele

转载于:https://www.cnblogs.com/tonysmith/p/7744378.html

你可能感兴趣的文章
Bootstrap栅格学习
查看>>
程序员的数学
查看>>
聚合与组合
查看>>
jQuery如何获得select选中的值?input单选radio选中的值
查看>>
设计模式 之 享元模式
查看>>
如何理解汉诺塔
查看>>
洛谷 P2089 烤鸡【DFS递归/10重枚举】
查看>>
15 FFT及其框图实现
查看>>
Linux基本操作
查看>>
osg ifc ifccolumn
查看>>
C++ STL partial_sort
查看>>
3.0.35 platform 设备资源和数据
查看>>
centos redis 安装过程,解决办法
查看>>
IOS小技巧整理
查看>>
WebDriverExtensionsByC#
查看>>
我眼中的技术地图
查看>>
lc 145. Binary Tree Postorder Traversal
查看>>
sublime 配置java运行环境
查看>>
在centos上开关tomcat
查看>>
重启rabbitmq服务
查看>>