일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- install
- 노드
- python
- 3.0
- ubuntu
- 우분투
- 자바
- java
- 데이터베이스
- hamonikr
- DATABASE
- 하모니카
- 리눅스
- 윈도우
- Windows
- 스크립트
- javascript
- 자바스크립트
- script
- Atlassian
- JS
- PostgreSQL
- node
- DB
- 설치
- 설정
- 아틀라시안
- postgres
- Linux
- 파이썬
Archives
- Today
- Total
LukeHan 의 잡다한 기술 블로그
Python 예외처리 본문
반응형
참고
# try-except 문
def safe_pop_print(list, index):
try:
print(list.pop(index))
except IndexError:
print('{} index의 값을 가져올 수 없습니다.'.format(index))
safe_pop_print([1,2,3], 5) # 5 index의 값을 가져올 수 없습니다.
# if 문
def safe_pop_print(list, index):
if index < len(list):
print(list.pop(index))
else:
print('{} index의 값을 가져올 수 없습니다.'.format(index))
safe_pop_print([1,2,3], 5) # 5 index의 값을 가져올 수 없습니다.
# 모든 에러 처리
try:
list = []
print(list[0]) # 에러가 발생할 가능성이 있는 코드
text = 'abc'
number = int(text)
except:
print('에러발생')
# 에러 이름 확인
try:
list = []
print(list[0]) # 에러가 발생할 가능성이 있는 코드
except Exception as ex: # 에러 종류
print('에러가 발생 했습니다', ex) # ex는 발생한 에러의 이름을 받아오는 변수
# 에러가 발생 했습니다 list index out of range
# 올바른 값을 넣지 않으면 에러를 발생시키고 적당한 문구를 표시한다.
def rsp(mine, yours):
allowed = ['가위','바위', '보']
if mine not in allowed:
raise ValueError
if yours not in allowed:
raise ValueError
try:
rsp('가위', '바')
except ValueError:
print('잘못된 값을 넣었습니다!')
반응형
Comments