언어/python

python exception handling

파아랑새 2016. 3. 12. 22:48

------------ <Exception Handling 예외처리> ---------------

try ~ except

- (구조) -------------------------------------------------------------------

try:

예외를 유발할 수 있는 구문

except <예외 종류>:

예외 처리를 수행하는 구문

-----------------------------------------------------------------------------

except ValueError

except ZeroDivisionError