QuestenaPractice that shows what to review next
Question 89

Which exception type normally results from evaluating "3" + 2?

  1. TypeErrorCorrect answer
  2. ValueError
  3. NameError
  4. KeyError

Explanation

Addition receives a string and an integer in a combination for which the operation has no suitable meaning, so TypeError is raised. The content of each operand is individually valid, which makes ValueError the less fitting category.

Continue with this test

Start practice
Question 89: Which exception type normally results from evaluating "3" +… · Python Fundamentals · Questena