list last element code example
Example 1: python last element in list
bikes = ['trek', 'redline', 'giant']
bikes[-1]
Example 2: access last element of list python
MyList=["Black","Blue","Red","Green"]
print(MyList[-1])
Example 3: python list last element
my_list = ['red', 'blue', 'green']
last_item = my_list[len(my_list) - 1]
last_item = my_list.pop()
last_item = my_list[-1]
*_, last_item = my_list
Example 4: python get last item in a list
my_list = ["I", "Love", "Python"]
last_item_in_list = my_list[-1]