python print last index of list code example
Example 1: python get last element of list
mylist = [0, 1, 2]
mylist[-1] = 3 # sets last element
print(myList[-1]) # prints Last element
Example 2: how to find last index of list in python
# Use an Index of -1
l = [1,2,3,4]
print(l[-1])
# Returns 4