获取 Python 中列表的最后一个元素
Muhammad Maisam Abbas
2023年1月30日
2021年3月21日
在本教程中,我们将讨论获取 Python 中列表的最后一个元素的方法。
在 Python 中使用 pop()
函数获取列表的最后一个元素
pop()
函数可用于获取列表的最后一个元素。默认情况下,pop()
函数返回列表的最后一个元素,并从列表中删除该元素。以下代码示例向我们展示了如何在 Python 中使用 pop()
函数获取列表的最后一个元素。
list1 = [0,1,2,3,4]
last = list1.pop()
print(last)
print(list1)
输出:
4
[0, 1, 2, 3]
在上面的代码中,我们首先初始化一个列表 list1
,然后使用 pop()
函数获得 list1
的最后一个元素。
在 Python 中使用 -1
索引获取列表的最后一个元素
如果我们不想从列表中删除最后一个元素,则必须使用 -1
作为列表索引。在 Python 中,-1
索引表示最后一个索引。同样,-2
索引表示倒数第二个索引,依此类推。以下代码示例向我们展示了如何在 Python 中使用 -1
索引获取列表的最后一个元素。
list1 = [0,1,2,3,4]
print(list1[-1])
print(list1)
输出:
4
[0, 1, 2, 3, 4]
在上面的代码中,我们首先初始化一个列表 list1
,然后使用 -1
索引获得 list1
的最后一个元素。
这两种方法做的事情都是一样的,唯一的区别是 pop()
函数删除最后一个元素,而 -1
索引却不删除。
Author: Muhammad Maisam Abbas
Maisam is a highly skilled and motivated Data Scientist. He has over 4 years of experience with Python programming language. He loves solving complex problems and sharing his results on the internet.
LinkedIn