gpt4 book ai didi

python - 如果找不到文件,则引发ValueError

转载 作者:行者123 更新时间:2023-12-03 08:10:09 26 4
gpt4 key购买 nike

如果找不到文件,我想引发ValueError。目前,我有以下内容:

def read_file(filename):
try:
with open(filename, "r") as f:
#do something
except ValueError:
print("File not found")

但是,这只会返回FileNotFoundError:如果找不到该文件

最佳答案

改为捕获IOError,并在except块内引发ValueError

try:
with open(filename, "r") as f:
#do something
except IOError:
raise ValueError("File not found")

关于python - 如果找不到文件,则引发ValueError,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58037093/

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