Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- YOLO
- 프로그래머스
- JSON
- 핑거스타일
- C
- 채보
- paramiko
- Visual Studio
- Numpy
- label
- VS Code
- OpenCV
- mysql
- Selenium
- windows forms
- pandas
- pytorch
- SSH
- LIST
- 컨테이너
- Docker
- 기타 연주
- ubuntu
- C++
- error
- Linux
- Python
- C#
- pip
- 오류
Archives
- Today
- Total
기계는 거짓말하지 않는다
Python stacktrace 출력 traceback module 본문
traceback — 스택 트레이스백 인쇄와 조회 — Python 3.7.16 문서
아래는 stacktrace 출력의 간단한 예이다.
import traceback
try:
a = 1 / 0
except ZeroDivisionError as e:
# 기본 에러 메시지
print("Error Msg:", str(e))
print("-" * 50)
print("-- Stack Trace --")
# stacktrace 출력
print(traceback.format_exc(), end="")
'Python' 카테고리의 다른 글
Python 순열 (Permutation) 구현 (0) | 2023.04.15 |
---|---|
Python Module 'ffmpeg' has no attribute 'probe' 오류 (0) | 2023.04.09 |
Python pymysql cursor DB 값 변경 인식 불가 (0) | 2023.04.01 |
Python SSH Client 원격 연결 (Paramiko) (0) | 2023.02.24 |
Python 깊은 복사, 얕은 복사 (Shallow Copy, Deep Copy) (0) | 2023.02.12 |
Comments