Answers for "python exception handling line number"

2

exception get line number python

import traceback

try:
    print(4/0)
except ZeroDivisionError:
    print(traceback.format_exc())
Posted by: Guest on January-28-2021

Code answers related to "python exception handling line number"

Python Answers by Framework

Browse Popular Code Answers by Language