identify the type of error described
![identify the type of error described class=](https://us-static.z-dn.net/files/dde/1eed412fca999ea3bcb59162532960d4.png)
Answer:
ZeroDivisionError
ValueError
Explanation:
ZeroDivisionError occurs when you attempt to divide a number by [tex]0[/tex].
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 :)