[055] 예외처리 이해하기 1(try~except)

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

try:
    print('안녕하세요')
    print(param)
except:
    print('예외가 발생했습니다!')

Comments