在 python 中使用 pickle 和 for 循环从文件中读取
我有一个文件,其中转储了大量列表。现在我想将此文件加载到内存中并使用其中的数据。我尝试使用“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个怎么样:
How about this: