python-mote::try, except, else

Today lolol·2020년 8월 3일
0

python

목록 보기
1/2

useful else

try:
	# code can be causes exception
except SomeException as err:
	print(err)
except Exception as err:
	print(err)
else:
	# if there is no exception
    # this code will be called
finally:
	# do not care, has exception or not
    # called once anyway

else 구문을 잘쓰면 요긴하게 쓸 수 있겠다.

profile
working making doing makes us 🤖

1개의 댓글

comment-user-thumbnail
2020년 8월 3일

python selenium에 대한 글을 썼는데 날라갔다..

답글 달기