what type of error occurred with the code below??
![what type of error occurred with the code below class=](https://us-static.z-dn.net/files/df5/520f2d262035058994e58842da573871.png)
Answer:
ValueError
Explanation:
The string 'five' holds characters that are not numeric, meaning it will raise ValueError since the function int() does not accept arguments that are strings with characters that are not numbers/numeric.
Hope this helps :)