gpt4 book ai didi

python - '' except Exception as e'' 在 python 中是什么意思?

转载 作者:太空宇宙 更新时间:2023-11-03 12:24:06 25 4
gpt4 key购买 nike

<分区>

异常处理的典型结构如下:

try:
pass
except Exception, e:
raise
else:
pass
finally:
pass

我可以知道 except Exception, e:except Exception as e: 是什么意思吗?通常我会使用 print (e) 来打印错误消息,但我想知道程序做了什么来生成 e。

如果我以另一种方式构建它(如下),它会是什么样子?

except Exception:
e = Exception.something

替换东西的方法应该是什么?

try下的代码体没有异常时,程序将执行else下的代码。但是,finally 在这里做了什么?

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