ML_Exceptions
ML_Exceptions
PYTHON
EXCEPTIONS
• What Are Exceptions?
•
• Exceptions
Syntax :
try:
try_suite # watch for exceptions here
except Exception:
except_suite # exception-handling code
try-except Statement – Example
>>> try:
… f = open('blah')
… except IOError:
… print 'could not open file'
…
could not open file
try-except Statement
try:
try_suite
finally:
finally_suite # executes regardless of
exceptions