#Arr[-1] means the last element of array Arr[] arr = [1, 2, 3, 4, 5, 6] #get the last element print(arr[-1]) #get the second last element print(arr[-2])