Python 예외 처리 finally와 else 차이
예외 처리로 에러를 처리하는 경우 사용할 수 있는 문법으로 finally와 else가 있습니다.사용 방법과 어떤 동작을 하는지 알아보겠습니다.먼저 else는 try문 내에서 에러가 발생하지 않은 경우 처리를 하게 됩니다.else 예제try: a = 10 / 1 print("{0}".format(a))except ZeroDivisionError as e: print("ZeroDivisionError!!")else: print("else statement")finally: print("finally statement")결과10.0els...