python select last item on list code example
Example 1: access last element of list python
MyList=["Black","Blue","Red","Green"]
print(MyList[-1])
Example 2: how to get the last value in a list python
your_list = ["apple", "orange", "grapes"]
last_value = your_list[-1]