Answers for "python how to dump exception stak"

0

python how to dump exception stak

import traceback

try:
    do_stuff()
except Exception:
    print(traceback.format_exc())
Posted by: Guest on July-01-2021

Python Answers by Framework

Browse Popular Code Answers by Language