关于python:获取列表中第二个到最后一个元素

Getting Second-to-Last Element in List

本问题已经有最佳答案,请猛点这里访问。

我可以得到列表中第二个到最后一个元素,其中包括:

1
2
3
>>> lst = ['a', 'b', 'c', 'd', 'e', 'f']
>>> print(lst[len(lst)-2])
e

有没有比使用print(lst[len(lst)-2])获得相同结果更好的方法?


有:负指数:

1
lst[-2]