lastr elem of list code example Example 1: last element in list py l = [1,2,3,4,5] last = l[len(l)-1] Example 2: get the last element of a list python print(list[-1])