def rsp(mine, yours):
allowed = ['가위','바위', '보']
if mine not in allowed:
raise ValueError
if yours not in allowed:
raise ValueError
try:
rsp('가위', '바')
except Exception as ex: # 에러 종류
print(ex)
출처 : https://wayhome25.github.io/python/2017/02/26/py-12-exception/
'Python' 카테고리의 다른 글
python 코드 안에 한글이 있을경우 오류 발생시 (0) | 2020.02.25 |
---|---|
python if문 한 줄로 표현 (0) | 2020.02.25 |
python 문자열에서 html 태그 없애기 (0) | 2020.02.24 |
list[]를 문자열로 합치기 (0) | 2020.02.24 |
json 등 딕셔너리에 특정 키 존재 확인 (0) | 2020.02.24 |