find last item in array python code example
Example 1: how to find the last item of a list
list1 = ['a','b','c']
print(list1[-1])
Example 2: how to get the last value in a list python
your_list = ["apple", "orange", "grapes"]
last_value = your_list[-1]