为了账号安全,请及时绑定邮箱和手机立即绑定

python 中cPickle学习

标签:
Python

写入:

import cPickle as p

shoplistfile = 'data.data'

shoplist = ['meili',['current_account',[100000,1222],'basis_account',[5555555,888]],

            'qinshan',['current_account',[1089000,12292],'basis_account',[55555955,888]],

            'jiayou',['current_account',[10000,12292],'basis_account',[55555955,888]]

            ]

animallist=['hippo','rabbit','apple', 'mango', 'carrot']

f = file(shoplistfile, 'w')

p.dump(shoplist,f,True)

p.dump(animallist,f,True)

f.close()


https://img1.sycdn.imooc.com//5b3082c60001f70f07470110.jpg

读取:

f = file(shoplistfile)

storedlist = p.load(f)

animallist= p.load(f)


print storedlist

print animallist


结果:

https://img1.sycdn.imooc.com//5b3082e7000187e107600085.jpg

点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消