QuestenaPractice that shows what to review next
Question 91

Given items = [10, 20], which exception type results from items[4]?

  1. KeyError
  2. ValueError
  3. IndexErrorCorrect answer
  4. It returns None

Explanation

Index 4 lies outside the valid positions of this two-item list, so direct subscription raises IndexError. Slices can clip excessive bounds, but this expression is a single index rather than a slice.

Continue with this test

Start practice
Question 91: Given items = [10, 20], which exception type results from… · Python Fundamentals · Questena