맨체스터 사는 개발자

[Python] raise 본문

개발/Python

[Python] raise

aaamy91 2021. 11. 11. 08:34

개발을 하다보면 에러를 일으켜야 할 때가 있다. 이때 파이썬에서는 raise를 쓴다.

 

def isOdd(n):
    if n%2 == 0:
        raise ValueError
    print('{} is odd number'.format(n))

try:
    isOdd(3)
except ValueError:
    print('The number is not odd number')

'개발 > Python' 카테고리의 다른 글

[Python] Slice 와 Step  (0) 2021.11.14
[Python] List 의 대표적인 기능들과 string  (0) 2021.11.12
[Python] if 문 관련해서  (0) 2021.11.12
[Python] try/exception  (0) 2021.11.11
지금 까지 공부한 것 정리  (0) 2021.09.15