lst[::-1] gives you a reversed copy of the liststart or end may be a negative number, which means it counts from the end of the array instead of the beginning. So:a[-1]    # last item in the array
a[-2:]   # last two items in the array
a[:-2]   # everything except the last two items
(source)
 
                