Which exception type is raised by int("abc")?
Explanation
The converter accepts a string as an input type, but these characters do not represent a valid base-ten integer, so ValueError fits. TypeError would describe an unsuitable input type rather than unsuitable content within an accepted type.