时间:2021-05-22
使用pickle模块来dump你的数据:对上篇博客里的sketch.txt文件:
import osimport sysimport 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!qX Oh look, this isn't an argument!qX No it isn't!qX It's just contradiction!qX 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 nesterimport osimport sysimport 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实例讲解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
python3shelve模块的详解一、简介 在python3中我们使用json或者pickle持久化数据,能dump多次,但只能load一次,因为先前的数据
pyyaml模块在python中用于处理yaml格式数据,主要使用yaml.safe_dump()、yaml.safe_load()函数将python值和yam
本文研究的主要是Python使用pickle模块存储数据报错解决方法,以代码的形式展示,具体如下。首先来了解下pickle模块pickle提供了一个简单的持久化
如下所示:importpicklewithopen(filename,'rb')asf:datadict=pickle.load(f,encoding='lat
Json模块dumps、loads、dump、load函数介绍1、json.dumps()json.dumps()用于将dict类型的数据转成str,因为如果直