For items = ["a", "b", "c"], which statement describes items[-1]?
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.
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.