DrZhang Python allows us to use negative indexing to retrieve values from the end of an indexable object, such as a list. >>> data = [1,2,3,4,5] >>> latest = data[-1] >>> latest 5