关于python:三种方法获取Python-列表最后一个元素

34次阅读

共计 152 个字符,预计需要花费 1 分钟才能阅读完成。

三种办法获取 Python 列表最初一个元素

>>> list1 = [1, 2, 3, 4, 5]
>>> print(list1[len(list1)-1])
5
>>> print(list1[-1])
5
>>> print(list1.pop())
5
>>> 

参考:
how to get last element of a list in python

正文完
 0