Last Element function in python code example Example 1: python last element of list print(list[-1]) Example 2: last element in list py l = [1,2,3,4,5] last = l[len(l)-1]