Suppose I\'ve the following list:
list1 = [1, 2, 33, 51] ^ | indices 0 1 2 3
How do I obtain the
Did you mean len(list1)-1?
len(list1)-1
If you're searching for other method, you can try list1.index(list1[-1]), but I don't recommend this one. You will have to be sure, that the list contains NO duplicates.
list1.index(list1[-1])