gpt4 book ai didi

python - 从空 pickle 文件中解泡 Python 字典时出现 EOFerror

转载 作者:行者123 更新时间:2023-11-28 21:14:42 25 4
gpt4 key购买 nike

非常新手程序员,如果这很愚蠢或者我的英语有误,请原谅。所以,我有我正在写的这个命令行地址簿。它由一个字典组成,该字典包含一个以键为名称变量的对象,每个对象都有与之关联的变量,例如人名,电子邮件等......它有效,但现在我正在尝试它使用 pickle 将字典持久存储在内存中。

def create_person():
"""Adds an instance object of the Person class to the dictionary persons. persons is a global variable, that has been created previously. DATA is a variable that points to a file named test.data that exists in the same directory as the script."""
name = raw_input("Enter the person's name here: ")
email = raw_input("Enter the person's email here: ")
phone = raw_input("Enter the person's phone here: ")
address = raw_input("Enter the person's address here: ")
f = open(DATA, "rb")
persons = pickle.load(f) #assign whatever is saved in the dictionary in persistent memory to global variable persons, which is empty at this point in the beginning
f.close()
persons[name] = Person(name, email, phone, address)
f = open(DATA, "wb")
pickle.dump(persons, f)
f.close()

但是,我收到了这个错误:

Traceback (most recent call last):
File "testpickle.py", line 85, in <module>
main()
File "testpickle.py", line 40, in main
create_person()
File "testpickle.py", line 20, in create_person
persons = pickle.load(f)
File "/home/pedro/anaconda/lib/python2.7/pickle.py", line 1378, in load
return Unpickler(file).load()
File "/home/pedro/anaconda/lib/python2.7/pickle.py", line 858, in load
dispatch[key](self)
File "/home/pedro/anaconda/lib/python2.7/pickle.py", line 880, in load_eof
raise EOFError
EOFError

我不明白这个。这个程序我其实早就写好了,而且是在节省内存的情况下工作的,但是我不小心把它删了。发生了什么事?

最佳答案

pickle 命中 EOF 肯定会告诉文件已损坏(可能被截断,可能写入操作失败)。

如果您将它上传到某个地方,我们或许能够推断出它到底出了什么问题。在最坏的情况下,您将不得不查看内部并推断出其中的数据,然后手动重新输入。

这是您使用不可读格式且不注意其完整性(例如 writing to another file and only moving it over the original one after saving succeeded)的代价。

更新:

如果您想从一个新的“空”文件开始,那么在文件丢失时处理这种情况并生成一个空的dict。毕竟,文件最初应该会丢失,不是吗?

空文件不是有效的 pickle 数据(它必须至少包含有关对象类型的信息)。

这是处理丢失文件的“一种显而易见的方法”((c) Python Zen):

import errno    
try: f = open(DATA, "rb")
except IOError,e:
if e[0]==errno.ENOENT: persons={}
else: raise
else:
persons = pickle.load(f)
f.close()
del f

关于python - 从空 pickle 文件中解泡 Python 字典时出现 EOFerror,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31438797/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com