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'
12
0

访问列表python的最后一个元素

MyList=["Black","Blue","Red","Green"]
print(MyList[-1])
3
0

获取列表python的最后一个元素

print(list[-1])
1
0

python列表的最后一个元素

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

获取每个项目,但python列表的最后一个项目

x = [1, 2, 3, 4]

#same array, but the last item.
notLast = x[0:-1]

其他语言

此页面有其他语言版本

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