select last element of list python code example
Example 1: last element in list py
l = [1,2,3,4,5]
last = l[len(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]
last = l[len(l)-1]
list1 = ['a','b','c']
print(list1[-1])