Python 예외 처리 except 여러개 작성 방법
예외 처리인 try except에는 처리에 맞는 적절한 예외처리 종류를 작성해야 합니다.만약, 발생할 수 있는 에러가 여러개라면 예외 처리 종류도 여러개 작성해야 합니다.파일 입출력의 경우를 예로 보겠습니다.예외처리 복수 예제try: f = open(file_name,'w') data = dict_input f.write(data) f.close()except KeyError: print('Key not found')except (FileNotFoundError, TypeError) : print('Could not open fil...