python try: except ExceptionType1: except ExceptionType2: … else: finally: python try: result = 100 / x except ValueError: except ZeroDivisionError: else: finally: