x = -1 if x < 0: raise Exception("음수 불가.") 결과값: ... Exception: 음수 불가.
x = -1
if x < 0:
raise Exception("음수 불가.")
결과값: ... Exception: 음수 불가.
raise 정의
일부러 에러 조건 충복시켜, Exception (= 에러 처리 코드) 실행.
raise 예제
x = "Homzzang.com" if not type(x) is int: raise TypeError("정수만 허용.") 결과값: ...TypeError: 정수만 허용.
x = "Homzzang.com"
if not type(x) is int:
raise TypeError("정수만 허용.")
결과값: ...TypeError: 정수만 허용.
최신댓글