How to re-raising exception for inspection in Python

1 Answer

0 votes
try:
    13 / 0
except ZeroDivisionError:
    print("Error: ZeroDivisionError")
    raise
finally:
    print("finally")


'''
run:

Error: ZeroDivisionError
finally
Traceback (most recent call last):
  File "D:/python/filename.python", line 3, in <module>
    13 / 0
ZeroDivisionError: division by zero

'''

 



answered Sep 25, 2017 by avibootz

Related questions

3 answers 260 views
1 answer 141 views
141 views asked Nov 27, 2020 by avibootz
1 answer 208 views
208 views asked Jan 4, 2016 by avibootz
1 answer 162 views
1 answer 194 views
...