QuestenaPractice that shows what to review next
Question 98

For items = ["a", "b", "c"], which statement describes items[-1]?

  1. It selects the first item, 'a'.
  2. It raises IndexError because negative indexes are invalid.
  3. It selects the final item, 'c'.Correct answer
  4. It returns None.

Explanation

A negative index counts backward from the end, and -1 designates the final list item, c. It is valid for a nonempty sequence and does not wrap around to the first item.

Continue with this test

Start practice
Question 98: For items = ["a", "b", "c"], which statement describes… · Python Fundamentals · Questena