博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
pickle使用
阅读量:4985 次
发布时间:2019-06-12

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

# filename:picklng.py

import pickle as p
#import pickle as p
shoplistfile = 'shoplist.data'
#the name of the file where we will store the object
shoplist = ['apple','mango','carrot']
#write to the file
f=open(shoplistfile,'wb') #wb, 开启二进制,否则会报错TypeError: must be str, not bytes
p.dump(shoplist,f) #dump the object to a file
f.close()
del shoplist # remove the shoplist
#read from the storage
f=open(shoplistfile,"rb") #如果缺少rb,则会报错:TypeError: 'str' does not support the buffer interface
storedlist=p.load(f)
print(storedlist)

转载于:https://www.cnblogs.com/amy2012/p/3719027.html

你可能感兴趣的文章
onpause 与 onresume
查看>>
[置顶] Android问题----Android OnSensorChanged() not working when screen lock is on
查看>>
【LeetCode】24.Linked List — Linked List Cycle II 链表环2
查看>>
[微软面试100题]21-30
查看>>
Latex
查看>>
格式化硬盘脚本
查看>>
SpringMVC处理JSON
查看>>
几何建模
查看>>
java crm 系统 进销存 springmvc SSM项目项目源码
查看>>
php直接取得本周时间
查看>>
jQuery.extend 函数详解
查看>>
关于npm 淘宝镜像 以及package.json里包的更新
查看>>
<jQuery> 一. jQuery简介及优点
查看>>
架构相关概念——学习笔记
查看>>
20165303第八周学习总结
查看>>
Beta—review阶段成员贡献分
查看>>
django 2.接口之工作原理
查看>>
被称为“开发者神器”的GitHub,到底该怎么用?
查看>>
(坑集)Django环境配置
查看>>
from __future__ import absolute_import
查看>>