-
Python traceback -오류를 역추적 하기Software Development/Python 2020. 6. 24. 20:36
traceback 이란 오류를 발생시킨 함수 호출을 역추적한 내용입이다.
스택 트레이스를 인쇄할 때 파이썬 인터프리터의 동작을 정확하게 모방합니다
import traceback def run(): return 1/0 def main(): try: run() except: print(traceback.format_exc()) while True: main()
'Software Development > Python' 카테고리의 다른 글
[Python] 파이썬 - asyncio callback 알아보기 (0) 2020.09.24 [Python] Pylint - 정의와 예제를 통해 Python 린트 툴 알아보기 (1) 2020.09.03 Python Decorator 란? (0) 2020.04.10 Python metaclasses, singleton pattern (0) 2020.04.10 NumPy 알아보기 (0) 2020.04.06