📌  相关文章
📜  python 获取数组的最后一个元素 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:30.731000             🧑  作者: Mango

代码示例6
my_list = ['red', 'blue', 'green']
# Get the last item with brute force using len
last_item = my_list[len(my_list) - 1]
# Remove the last item from the list using pop
last_item = my_list.pop() 
# Get the last item using negative indices *preferred & quickest method*
last_item = my_list[-1]
# Get the last item using iterable unpacking
*_, last_item = my_list