SW 공부/python

python 문법 6: 예외처리

Deer_0 2020. 9. 8. 18:41

6-1. 예외처리

자바 try catch

파이썬은 try except 구조

try:

except A:

except:

finally:
try:

except:

else:
try:

except:
	pass			#에러 발생시 패스

p y t h o n i s f u n