accesing last element of array list python code example
Example 1: last element in list py
l = [1,2,3,4,5]
last = l[len(l)-1]
Example 2: python last element of list
>>> list[-1:] # returns indexed value
[3]
>>> list[-1] # returns value
3