A function called carefulDivide that takes two floats (x and y) as parameters and returns x divided by y. HOWEVER, if y is zero, instead return the string "ERROR: Divide by zero".
MAKE SURE that your code will work for the general case, not just those cases shown.
FOR EXAMPLE, this call:
print(carefulDivide(11, 2))
print(carefulDivide(11, 3))
print(carefulDivide(11, 0))
Will generate this output:
5.5
3.6666666666666665
ERROR: Divide by zero