CustomException1 [python] try-except (예외처리) 안녕하세요. TDR입니다. 오늘은 python에서의 예외처리(try-except)에 대해서 간략히 정리해보겠습니다. class Custom01Exception(Exception): def __init__(self, msg): super().__init__(msg) class Custom02Exception(Exception): def __init__(self, msg): super().__init__(msg) def step_01(): try: raise Custom01Exception('Custom01Exception!') except Exception as msg: print('step01 exception : ' + str(msg)) raise def step_02(): try: step_01() .. 2024. 2. 27. 이전 1 다음