[058] 예외처리 이해하기 4(try~except Exception as e))

책 내용에 대한 무단배포 방지를 위해 최소한으로 정리

try:
    print(param)
except Exception as e:
    print(e)

Comments