Python sequence, including list object allows indexing. Any element in list can be accessed using zero based index. If index is a negative number, count of index starts from end. As we want second to last element in list, use -2 as index.
>>> L1=[1,2,3,4,5] >>> print (L1[-2]) 4