[Python] 파이썬 에러 핸들링 (try-except 구문)
1. try - except 구문 사용법 Java에 익숙한 사람들은 모두다 try-catch구문을 알고 있을 것이다. try{ //some impelmentation}catch(Exception e){ //error handling e.printStackTrace()} 그럼 파이썬에서는 이러한 구문이 없을까? try - except 구문이 있다. 한번 살펴보자 try : # some implementationexcept Exception, msg : # Error handling comes here print("Error occured : "+str(msg)) pass 딱 보면 감이 올것이다.some implementation 부분에 에러발생이 가능한 코드가 들어가고그에대한 exception처리는 exc..
Python
2016. 10. 28. 18:29