반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Python
- django
- PySpark
- dataframe
- c#
- PANDAS
- Java
- Google Spreadsheet
- Kotlin
- gas
- Apache
- matplotlib
- Excel
- GIT
- 파이썬
- math
- hive
- Mac
- SQL
- Google Excel
- Github
- string
- Redshift
- array
- Tkinter
- google apps script
- list
- PostgreSQL
- numpy
Archives
- Today
- Total
달나라 노트
Python Basic : raise (강제로 Error 발생시키기) 본문
728x90
반응형
Python에서 어떠한 이유로 강제로 Error를 발생시켜야 한다면 raise keyword를 사용할 수 있습니다.
raise syntax
raise Exception("error_message")
구문은 위와 같습니다.
Exception의 인자로 Error message를 적으면 해당 Error message가 출력되며 Error가 발생하고,
코드의 실행이 종료됩니다.
raise TypeError("Only integer type is allowed.")
위처럼 raise로 발생시킬 Error의 type도 변경할 수 있습니다.
위 예시는 TypeError를 일으킵니다.
728x90
반응형
'Python > Python Basic' 카테고리의 다른 글
Python Basic : __file__ (실행중인 python file의 경로 반환) (0) | 2021.06.26 |
---|---|
Python Basic : try ~ except ~ else ~ finally (Error 발생 상황 다루기) (0) | 2021.06.26 |
Python Basic : replace (특정 문자 변경하기) (0) | 2021.06.14 |
Python Basic : input (User input value 받아오기) (0) | 2021.06.11 |
Python Basic : in, not in 연산자 (포함 연산자. 문자나 요소의 포함여부) (0) | 2021.06.11 |
Comments