python get last item in array code example
Example 1: how to access the last element of a list in python
l = [1, 2, 3, 4, 5]
print(l[-1])
Example 2: how to find the last item of a list
list1 = ['a','b','c']
print(list1[-1])
l = [1, 2, 3, 4, 5]
print(l[-1])
list1 = ['a','b','c']
print(list1[-1])