如何在python中获取list的最后一个索引

代码示例

110
0

python list中的最后一个元素

# To get the last element in a list you use -1 as position
bikes = ['trek', 'redline', 'giant']
bikes[-1]
# Output:
# 'giant'
4
0

如何在python中找到list的最后一个索引

# Use an Index of -1
l = [1,2,3,4]
print(l[-1])
# Returns 4
3
0

如何找到列表的最后一项

list1 = ['a','b','c']
print(list1[-1])

1
0

python列表的最后一个元素

>>> list[-1:] # returns indexed value
    [3]
>>> list[-1]  # returns value
    3
1
0

如何获取列表中的最后一个值python

your_list = ["apple", "orange", "grapes"]
last_value = your_list[-1]
1
0

如何打印列表中的最后一个元素python

lis[len(lis)-1]

其他语言

此页面有其他语言版本

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................