QuestenaPractice that shows what to review next
Question 92

Given data = dict(a=1), which exception type results from data["b"]?

  1. IndexError
  2. NameError
  3. AttributeError
  4. KeyErrorCorrect answer

Explanation

Dictionary subscription requests b, which is absent, so the mapping raises KeyError. IndexError belongs to out-of-range sequence positions, while a dictionary get call could instead provide a default without raising.

Continue with this test

Start practice
Question 92: Given data = dict(a=1), which exception type results from… · Python Fundamentals · Questena