Python 디버깅
CODEDRAGON ㆍDevelopment/Python
반응형
Python 디버깅
· Python은 디버깅(debugging)을 위해 {pdb} 라는 Python Debugger 내장 모듈을 제공합니다.
· {pdb} 모듈의 디버거(Debugger )는 중단점(breakpoint) 설정, Step over, Step into, 콜스택 검사, 소스 리스팅, 변수 치환 등 다양한 기능을 제공합니다.
'Development > Python' 카테고리의 다른 글
메타 문자(meta characters) (0) | 2020.02.27 |
---|---|
CSV 파일 쓰기 (0) | 2020.02.27 |
TSV 파일(Tab Separated Values File) (0) | 2020.02.27 |
Iterater(이터레이터) (0) | 2020.02.27 |
dict vs orderedDict (0) | 2020.02.27 |