gpt4 book ai didi

python - Pickle:读取和创建空文件

转载 作者:行者123 更新时间:2023-11-28 21:16:02 41 4
gpt4 key购买 nike

我想制作一个小型数据库来存储一些数据。由于它是将要设置的模块的一部分,我必须考虑到数据库文件尚未创建,因此我必须创建它。

我一直在考虑做:

with f as open("fname", "rwb"):
file = pickle.load(f)

使用 rwb 我可以读写,如果文件不存在则创建文件。但是如果我这样做,因为文件是空的,它会引发 EOFError。我应该将此异常exceptEOFError 并将None 值转储到文件中,还是可能出于任何其他原因引发?如果后者是真的,那我该怎么办?

最佳答案

我会将其封装在 try/except 中:

try:
with open('fname', 'rb') as f:
file = pickle.load(f)
# The above will not raise EOFError, even if it's empty, so you'll need more code here that could cause that.
except IOError:
# The file cannot be opened, or does not exist.
# Initialize your settings as defaults and create a new database file.
except EOFError:
# The file is created, but empty so write new database to it.

关于python - Pickle:读取和创建空文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29311847/

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