python | February 12, 2020
try
: exception이 발생하지 않고 정상 작동 되었을 때 실행된다.except <error>
: exception이 발생하면 실행된다.except Exception (as e)
: 위의 except에서 말한 error가 아닌 다른 종류의 exception이 발생했을 때 실행된다. as를 사용해서 해당 exception의 객체를 받아서 정보를 더 얻을 수 있다.else
: exception이 발생하지 않았을 때 실행된다.finally
: exception 발생 여부와 상관없이 무조건 실행된다.def division(num1, num2):
try: #정상 작동시
div1 = num1 / num2
except TypeError: #typeerror 발생시
div1 = "TypeError"
except Exception as e: #다른 exception 발생시
div1 = f"TypeError가 아닌 다른 Exception 발생 ==> {e}"
else: #정상 작동시(try가 실행되었을 때)
print("exception이 발생하지 않았습니다.")
return div1