Answer:
ZeroDivisionError
ValueError
Step-by-step explanation:
ZeroDivisionError occurs when you attempt to divide a number by
.
ValueError occurs when the argument passed into a function holds the wrong value. In this case, the string is not numeric which cannot be passed into the float() function.
Hope this helps :)