Knowledge Map
파이썬 에러 처리 본문
https://wiki.python.org/moin/HandlingExceptions
import sys
try:
untrusted.execute()
except: # catch *all* exceptions
e = sys.exc_info()[0]
write_to_page( "<p>Error: %s</p>" % e )
파이썬에서는 원래 특정 에러에 대한 except를 처리하지만, 경우에 따라서 모든 에러들을 체크해야 할 필요가 있다.
그럴때 이것을 사용하면 어떤 이름의 에러가 났는지 알수 있다.
'PYTHON' 카테고리의 다른 글
RuntimeWarning tensolrflow does not match runtime version 3.6 (0) | 2018.01.19 |
---|---|
python3 bytes class => json (0) | 2018.01.16 |
python2에서 pandas 설치시 numpy에러 (0) | 2018.01.03 |
파이썬2 한글 인코딩 문제 (0) | 2016.11.01 |
ip 확인, win 64bit 에서의 실행파일 생성, 진행막대바 생성 (0) | 2016.10.25 |
Comments