Table of Contents

About

Code - Exception (Try, Catch, Finally statement) in Python

Syntax

Exception handlers are specified with the try … except statement.

See:

Example

import sys

try:
    f = open('myfile.txt')
    s = f.readline()
    i = int(s.strip())
except OSError as err:
    print("OS error: {0}".format(err))
except ValueError:
    print("Could not convert data to an integer.")
except:
    print("Unexpected error:", sys.exc_info()[0])
    raise
finally:
    print("The finally clause is executed whether an exception occurred or not in the preceding code")

Documentation / Reference