python index from end code example
Example 1: how to print last element in a list python
lis[len(lis)-1]
Example 2: python last index of item in list
def list_rindex(li, x):
for i in reversed(range(len(li))):
if li[i] == x:
return i
raise ValueError("{} is not in list".format(x))