last element in an array python 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 last element of list
print(list[-1])
Example 4: last element in list py
l = [1,2,3,4,5]
last = l[len(l)-1]
Example 5: 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