发布时间:2019-09-16 07:34:33编辑:auto阅读(1892)
写入:
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()
读取:
f = file(shoplistfile)
storedlist = p.load(f)
animallist= p.load(f)
print storedlist
print animallist
结果:
上一篇: Python27 反射
下一篇: python列表基本语法
48937
48063
38813
35935
30354
27134
26133
20970
20797
19146
681°
753°
730°
731°
709°
665°
771°
852°
984°
1222°