Answers for "how to find the last item of 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
12

python get last element of list

mylist = [0, 1, 2]
mylist[-1] = 3 # sets last element
print(myList[-1]) # prints Last element
Posted by: Guest on May-25-2020
6

python get last element in list

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

how to find the last item of a list

list1 = ['a','b','c']
print(list1[-1])
Posted by: Guest on July-06-2020

Code answers related to "how to find the last item of a list"

Python Answers by Framework

Browse Popular Code Answers by Language