get index value of the last element python 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
Example 3: python last element of list
>>> list[-1:] # returns indexed value
[3]
>>> list[-1] # returns value
3