python Data List

/ 목차 /
- 파이썬(Python)예외 처리
파이썬(Python)예외 처리
- try-except-finally 문은 파이썬에서 예외처리를 위해 사용됩니다.code try 실행할 코드 except : 예외가 발생 할때 처리 코드 else : 예외가 발생 할을 때 처리코드 finally : 예외 발생 여부와 상관없이 실행되는 코드
try + except try + except + else try + finally try + except + finally try + except + else + finally
Comment