相关疑难解决方法(0)

除了以外的区别:和除了Ex:e:在Python中

以下两段代码都做同样的事情.它们捕获每个异常并执行except:块中的代码

小片1 -

try:
    #some code that may throw an exception
except:
    #exception handling code
Run Code Online (Sandbox Code Playgroud)

小片2 -

try:
    #some code that may throw an exception
except Exception as e:
    #exception handling code
Run Code Online (Sandbox Code Playgroud)

两种结构的区别是什么?

python python-3.x

114
推荐指数
5
解决办法
17万
查看次数

标签 统计

python ×1

python-3.x ×1