# The smart way list = ["first item", "second item", "third item"] print(list[len(list) - 1]) # The proper way print(list[-1])