使用pickle存储数据dump 和 load实例讲解


Posted in Python onDecember 30, 2019

使用pickle模块来dump你的数据:对上篇博客里的sketch.txt文件:

import os
import sys
import pickle
 
man=[ ]
other=[ ]
try:
    data=open('sketch.txt')
    for each_line in data:
        try:
            (role,line_spoken)=each_line.split(':',1)
            line_spoken=line_spoken.strip()
            if role == 'Man':
                man.append(line_spoken)
            elif role == 'Other Man':
                other.append(line_spoken)
        except ValueError:
            pass
    data.close()
except IOError:
    nester.print_lol('The data file is missing!')
 
try:
    with open('man_data.txt','wb') as man_file:
      pickle.dump(man,man_file)
    with open('other_data.txt','wb') as other_file:
      pickle.dump(other,other_file)
    
 
 
except IOError as err:
  print('File error: ' + str(err))
except pickle.PickleError as perr:
  print('Pickling error: ' + str(perr))

打开man_data.txt,看结果:

?]q (X'  Is this the right room for an argument?qX  No you haven't!qX  When?qX  No you didn't!qX  You didn't!qX  You did not!qX=  Ah! (taking out his wallet and paying) Just the five minutes.qX  You most certainly did not!qX  Oh no you didn't!q X  Oh no you didn't!q
X  Oh look, this isn't an argument!qX  No it isn't!qX  It's just contradiction!q
X  It IS!qX  You just contradicted me!qX  You DID!qX  You did just then!qX"  (exasperated) Oh, this is futile!!qX
  Yes it is!qe.

把已存储在man_data.txt上的二进制文件,恢复成可以读的文件,存放在new_man.txt中:

import nester
import os
import sys
import pickle
 
man=[ ]
other=[ ]
new_man=[ ]
 
try:
    data=open('sketch.txt')
    for each_line in data:
        try:
            (role,line_spoken)=each_line.split(':',1)
            line_spoken=line_spoken.strip()
            if role == 'Man':
                man.append(line_spoken)
            elif role == 'Other Man':
                other.append(line_spoken)
        except ValueError:
            pass
    data.close()
except IOError:
    print_lol('The data file is missing!')
 
try:
#    with open('man_data.txt','wb') as man_file:
#      pickle.dump(man,man_file)
#    with open('other_data.txt','wb') as other_file:
#      pickle.dump(other,other_file)
 
  with open('man_data.txt','rb') as man_file:
    new_man=pickle.load(man_file)
 
except IOError as err:
  print('File error: ' + str(err))
except pickle.PickleError as perr:
  print('Pickling error: ' + str(perr))

查看结果:

RESTART: C:/Users/ThinkPad/AppData/Local/Programs/Python/Python36-32/chapter4-134-pickle.py 
>>> import nester
>>> nester.print_lol(new_man)
Is this the right room for an argument?
No you haven't!
When?
No you didn't!
You didn't!
You did not!
Ah! (taking out his wallet and paying) Just the five minutes.
You most certainly did not!
Oh no you didn't!
Oh no you didn't!
Oh look, this isn't an argument!
No it isn't!
It's just contradiction!
It IS!
You just contradicted me!
You DID!
You did just then!
(exasperated) Oh, this is futile!!
Yes it is!
>>> import os
>>> os.getcwd()
'C:\\Users\\ThinkPad\\AppData\\Local\\Programs\\Python\\Python36-32'
>>>

若是想保存new_man.txt到磁盘文件,可以加:

with open('new_man.txt','w') as new_man_file:
    nester.print_lol(new_man,fn=new_man_file)

以上这篇使用pickle存储数据dump 和 load实例讲解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Python 相关文章推荐
深入Python解释器理解Python中的字节码
Apr 01 Python
Python使用面向对象方式创建线程实现12306售票系统
Dec 24 Python
python爬虫使用cookie登录详解
Dec 27 Python
PyTorch上实现卷积神经网络CNN的方法
Apr 28 Python
Python异常处理知识点总结
Feb 18 Python
Python for循环与range函数的使用详解
Mar 23 Python
Python实现查找字符串数组最长公共前缀示例
Mar 27 Python
Python安装与基本数据类型教程详解
May 29 Python
Python实现的ftp服务器功能详解【附源码下载】
Jun 26 Python
python 二维矩阵转三维矩阵示例
Nov 30 Python
Python识别html主要文本框过程解析
Feb 18 Python
如何利用python正则表达式匹配版本信息
Dec 09 Python
在Python中利用pickle保存变量的实例
Dec 30 #Python
python Popen 获取输出,等待运行完成示例
Dec 30 #Python
Python3常见函数range()用法详解
Dec 30 #Python
Python Pickle 实现在同一个文件中序列化多个对象
Dec 30 #Python
python使用HTMLTestRunner导出饼图分析报告的方法
Dec 30 #Python
用python爬取历史天气数据的方法示例
Dec 30 #Python
pytorch 自定义卷积核进行卷积操作方式
Dec 30 #Python
You might like
php生成图片缩略图的方法
2015/04/07 PHP
php操作access数据库的方法详解
2017/02/22 PHP
PHP实现网页内容html标签补全和过滤的方法小结【2种方法】
2017/04/27 PHP
windows下的WAMP环境搭建图文教程(推荐)
2017/07/27 PHP
javascript replace方法与正则表达式
2008/02/19 Javascript
学习js在线html(富文本,所见即所得)编辑器
2012/12/18 Javascript
jquery隐藏标签和显示标签的实例
2013/11/11 Javascript
jquery简单实现鼠标经过导航条改变背景图
2013/12/17 Javascript
三种动态加载js的jquery实例代码另附去除js方法
2014/04/30 Javascript
Javascript 学习笔记之 对象篇(二) : 原型对象
2014/06/24 Javascript
根据当前时间在jsp页面上显示上午或下午
2014/08/18 Javascript
Jquery ajax基础教程
2015/11/20 Javascript
轻松掌握JavaScript装饰者模式
2016/08/27 Javascript
jquery事件绑定解绑机制源码解析
2016/09/19 Javascript
微信js-sdk界面操作接口用法示例
2016/10/12 Javascript
Jquery Easyui分割按钮组件SplitButton使用详解(17)
2016/12/18 Javascript
在node.js中怎么屏蔽掉favicon.ico的请求
2017/03/01 Javascript
微信小程序 setData使用方法及常用错误解决办法
2017/05/11 Javascript
JS与CSS3实现图片响应鼠标移动放大效果示例
2018/05/04 Javascript
Vue 构造选项 - 进阶使用说明
2020/08/14 Javascript
Python实现定时精度可调节的定时器
2018/04/15 Python
Python爬虫实现使用beautifulSoup4爬取名言网功能案例
2019/09/15 Python
pandas 缺失值与空值处理的实现方法
2019/10/12 Python
.dcm格式文件软件读取及python处理详解
2020/01/16 Python
Python unittest 自动识别并执行测试用例方式
2020/03/09 Python
Python使用graphviz画流程图过程解析
2020/03/31 Python
党的群众路线教育实践活动心得体会900字
2014/03/07 职场文书
入党积极分子学习两会心得体会范文
2014/03/17 职场文书
实习单位评语
2014/04/26 职场文书
竞选学习委员演讲稿
2014/09/01 职场文书
2015年安康杯竞赛活动总结
2015/03/26 职场文书
工作经历证明范本
2015/06/15 职场文书
2019消防宣传标语!
2019/07/10 职场文书
Vue2.0搭建脚手架
2022/03/13 Vue.js
3050和2060哪个好 性能差多少 差距有多大 谁更有性价比
2022/06/17 数码科技
CSS link与@import的区别和用法解析
2023/05/07 HTML / CSS