ํ์ด์ฌ ์์ธ์ฒ๋ฆฌ(Exception)์ ๋ชจ๋ ๊ฒ
ยท
ํ๋ก๊ทธ๋๋ฐ ์ธ์ด/Python
๋ํ์ ์ธ ์์ธ ์ํฉ ํํ ๋ฐ์ํ๋ ์์ธ์ํฉ์ ๊ฐ๋จํ ์ดํด๋ณด๊ฒ ์ต๋๋ค. ์๋ ํ์ผ ์ด๊ธฐ >>> f = open("abc.txt", 'r') Traceback (most recent call last): File "", line 1, in FileNotFoundError: [Errno 2] No such file or directory: 'abc.txt' Zero division >>> 4 / 0 Traceback (most recent call last): File "", line 1, in ZeroDivisionError: division by zero index error >>> a = [1, 2, 3] >>> a[3] Traceback (most recent call last): File "", lin..