일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 파이썬
- 리눅스
- 스크립트
- PostgreSQL
- 윈도우
- Windows
- 노드
- Atlassian
- javascript
- 자바스크립트
- DATABASE
- node
- 3.0
- 설치
- Linux
- ubuntu
- 자바
- hamonikr
- 하모니카
- python
- postgres
- 설정
- DB
- java
- JS
- script
- 데이터베이스
- install
- 우분투
- 아틀라시안
Archives
- Today
- Total
목록try (1)
LukeHan 의 잡다한 기술 블로그
Python 예외처리
참고 https://gomguard.tistory.com/122 https://wayhome25.github.io/python/2017/02/26/py-12-exception/ # 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('{} in..
개발/Python
2020. 11. 15. 17:11