如何在不知道该列表中有多少项目的情况下访问列表中的最终项目?
例如:
list_items = [0,0,0,0,....... ,2]
print (the last item in the list)
答案 0 :(得分:4)
我认为你只是指最后一个索引,[-1]
返回最后一个元素:
>>> print(list_items[-1])
2
使用负整数访问从结尾到开头的索引。
答案 1 :(得分:1)
使用:
list_items[-1]
访问最后一个元素。