Print last element of array python

Code examples

110
0

python last element in list

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

get last element of array python

some_list[-1]
7
0

python get last element of list

number_list = [1, 2, 3]
print(number_list[-1]) #Gives 3

number_list[-1] = 5 # Set the last element
print(number_list[-1]) #Gives 5

number_list[-2] = 3 # Set the second to last element
number_list
[1, 3, 5]
7
0

python get last element in list

l = [1, 2, 3]
l[-1]

In other languages

This page is in other languages

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