例如,我有一个列表:list_a = [0,1,3,1]
我正在尝试遍历此循环中的每个数字,如果它命中列表中的最后一个“1”,则打印“这是列表中的最后一个数字”
由于有两个 1,有什么方法可以访问列表中的最后一个 1?
我试过了:
if list_a[-1] == 1:
print "this is the last"
else:
# not the last
这不起作用,因为第二个元素也是 1。尝试:
if list_a.index(3) == list_a[i] is True:
print "this is the last"
也没有工作,因为有两个1