在 python 中使用 pickle 和 for 循环从文件中读取

发布于 2024-09-26 15:10:19 字数 249 浏览 9 评论 0原文

我有一个文件,其中转储了大量列表。现在我想将此文件加载到内存中并使用其中的数据。我尝试使用“pickle”的“load”方法加载我的文件,但是,由于某种原因,它只给了我文件中的第一项。实际上我注意到它只将我的第一个列表加载到内存中,如果我想加载整个文件(多个列表),那么我必须迭代我的文件并在每个文件中使用“pickle.load(文件名)”我采取的迭代。 问题是我不知道如何用循环(for 或 while)实际实现它,因为我不知道何时到达文件末尾。 一个例子会对我有很大帮助。 谢谢

I have a file in which I have dumped a huge number of lists.Now I want to load this file into memory and use the data inside it.I tried to load my file using the "load" method of "pickle", However, for some reason it just gives me the first item in the file. actually I noticed that it only load the my first list into memory and If I want to load my whole file(a number of lists) then I have to iterate over my file and use "pickle.load(filename)" in each of the iterations i take.
The problem is that I don't know how to actually implement it with a loop(for or while), because I don't know when I reach the end of my file.
an example would help me a lot.
thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

灵芸 2024-10-03 15:10:19

这个怎么样:

lists = []
infile = open('yourfilename.pickle', 'r')
while 1:
    try:
        lists.append(pickle.load(infile))
    except (EOFError, UnpicklingError):
        break
infile.close()

How about this:

lists = []
infile = open('yourfilename.pickle', 'r')
while 1:
    try:
        lists.append(pickle.load(infile))
    except (EOFError, UnpicklingError):
        break
infile.close()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文