QuestenaPractice that shows what to review next
Question 90

Which exception type is raised by int("abc")?

  1. TypeError
  2. ValueErrorCorrect answer
  3. NameError
  4. It returns 0

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.

Continue with this test

Start practice
Question 90: Which exception type is raised by int("abc")? · Python Fundamentals · Questena