Post

@PythonPr Answer: 3
Solution: As we know, indexing starts from 0, from the leftmost item.
However, python provides this feature of negative index, which makes it easy to obtain items from the right.
a[-1] refers to the last (rightmost) item of the list a.
Thus, here it is 3.
English

