Answers for "python how to get the last element in a list"

119

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'
Posted by: Guest on February-19-2020
6

python get last element in list

l = [1, 2, 3]
l[-1]
Posted by: Guest on May-30-2020
2

python how to get the last element in a list

some_list = [1, 2, 3]
some_list[-1]
print(some_list)
#Output = 3
Posted by: Guest on April-25-2020

Code answers related to "python how to get the last element in a list"

Python Answers by Framework

Browse Popular Code Answers by Language