假设我有一些这样的代码:
try:
try:
raise Exception("in the try")
finally:
raise Exception("in the finally")
except Exception, e:
print "try block failed: %s" % (e,)
输出是:
try block failed: in the finally
从该打印语句的角度来看,有什么方法可以访问 try 中引发的异常,还是它永远消失了?
注意:我没有考虑用例;这只是好奇。