Answers for "get the exact line number of exception python"

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 "get the exact line number of exception python"

Python Answers by Framework

Browse Popular Code Answers by Language