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