Implement solve(a, b) that:
a / b (float division) if b != 0.None if b == 0 (catch the ZeroDivisionError).TypeError with message "Inputs must be numbers" if either argument is not an int or float.Examples
solve(10, 2) → 5.0solve(7, 0) → Nonesolve("a", 2) → raises TypeError("Inputs must be numbers")Sample tests