Predict the output

What will be the output of the given code ?

def Sum(a,b):
    try:
        c = ((a+b) / (a-b))
    except ZeroDivisionError:
        pass
    except ZeroDivisionError:
        print("Error")
    else:
        print (c)
 

Sum(2, 3)
Sum(3, 3)
Options
  1. -5
  2. Error
  3. ZeroDivisionError
  4. None of the above

Related Posts