python get last item in list code example
Example 1: python last element in list
bikes = ['trek', 'redline', 'giant']
bikes[-1]
Example 2: how to get last element of list in python
MyList = [1, 2, 3, 4, 5]
print(MyList[len(Mylist)-1])
Example 3: get the last element of a list python
print(list[-1])
Example 4: python get last item in a list
my_list = ["I", "Love", "Python"]
last_item_in_list = my_list[-1]
Example 5: how to find the last item of a list
list1 = ['a','b','c']
print(list1[-1])
Example 6: python select last item in list
your_list[-1]
your_list = [1, 'amazing', 'list']
your_list[-1]
--> 'list'