get last value of list of list code example
Example 1: last element of list python
list1 = ['a','b','c']
print(list1[-1])
Example 2: how to print last element in a list python
lis[len(lis)-1]
list1 = ['a','b','c']
print(list1[-1])
lis[len(lis)-1]