Answers for "print line number with 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 "print line number with exception python"

Python Answers by Framework

Browse Popular Code Answers by Language