如何访问列表中的最终项?(python)

时间:2014-04-01 18:16:25

标签: python list

如何在不知道该列表中有多少项目的情况下访问列表中的最终项目?

例如:

list_items = [0,0,0,0,....... ,2]
print (the last item in the list)

2 个答案:

答案 0 :(得分:4)

我认为你只是指最后一个索引,[-1]返回最后一个元素:

>>> print(list_items[-1])
2

使用负整数访问从结尾到开头的索引。

答案 1 :(得分:1)

使用:

list_items[-1] 

访问最后一个元素。