-
[Python] 예외 처리를 해보자 try, except, else, finallyPython 2021. 11. 24. 21:39
from os import error try: f = open("text.txt", "w") f.write("Test write to a text") => 일단 한번 실행해봄 except error as err: print(f"ERROR: {err}") => 에러가 발생 했다면 실행 else: print("I work when error has not been raised") => 에러가 발생 하지 않았다면 실행 finally: print("I always work no matter what") => 이러든 저런든 어쨋든 실행
'Python' 카테고리의 다른 글
[Python] text를 index해보자 module : re (0) 2021.11.24 [Python] with문에 대해 알아보자 (실행과 종료) (0) 2021.11.24 [Python] list에서 객체를 빼오자 pop (0) 2021.11.24 [Python] split 이용해서 간지 나게 리스트 만들기 (0) 2021.11.23 [Python] set란? 그리고 사용법 (0) 2021.11.23