try:
try_suite
except Exception1:
suite_for_Exception1

except (Exception2, Exception3, Exception4):
suite_for_Exceptions_2_3_and_4

except Exception5, Argument5:
suite_for_Exception5_plus_argument

except (Exception6, Exception7), Argument67:
suite_for_Exceptions6_and_7_plus_argument

except:
suite_for_all_other_exceptions

else:
no_exceptions_detected_suite
finally:
always_execute_suite