목록Python 예외 계층 (1)
살아가는 이야기
Python 예외 계층(3.11 기준)
Python에는 언어가 정의하고 있는 기본 예외(built-in exceptions)가 너무 많아서 이를 하나로 정리하는 것도 일이다. 그래서 텍스트 파일로 정리해 보았다. 예외 처리시에는 예외 계층을 알아야만 중복 처리로 인한 오류를 줄일 수 있다. BaseException ├── BaseExceptionGroup ├── GeneratorExit ├── KeyboardInterrupt ├── SystemExit └── Exception ├── ArithmeticError │ ├── FloatingPointError │ ├── OverflowError │ └── ZeroDivisionError ├── AssertionError ├── AttributeError ├── BufferError ├── EOFE..
컴퓨터, 풀어그림
2023. 5. 29. 08:39