오지's blog

try-except and raise연습 본문

개발노트/Python

try-except and raise연습

오지구영ojjy90 2019. 1. 20. 06:11
728x90
반응형

try-except and raise 연습


에러 명을 알때

try:

 실행코드

except 에러명:

 에러가 발생할때 실행코드


ex.

try:

 with open('text_file_name.txt', 'r') as fp:

 fp.readline()

except FileNotFoundError:

 print("파일 미존재")


일부러 에러 발생 raise




https://github.com/ojjy/pub_practice/blob/master/python/11_try_except.py

'개발노트 > Python' 카테고리의 다른 글

python버전 확인하는 방법 - terminal 혹은 pycharm 모두  (0) 2020.08.15
이메일 보내기  (0) 2019.01.23
압축하기 및 압축풀기  (0) 2019.01.14
packing, unpacking  (0) 2019.01.06
cow and bull  (0) 2019.01.06
Comments