python中except valueerror能继续细分嘛
时间: 2023-06-05 20:06:33 浏览: 136
是的,可以在except语句中使用多个异常类型来细分异常。例如:
try:
# some code that may raise exceptions
except ValueError:
# handle ValueError
except KeyError:
# handle KeyError
except:
# handle all other exceptions
阅读全文