1try:
2 print "Performing an action which may throw an exception."
3except Exception, error:
4 print "An exception was thrown!"
5 print str(error)
6else:
7 print "Everything looks great!"
8finally:
9 print "Finally is called directly after executing the try statement whether an exception is thrown or not."