top 100 programming interview questions in python code example
Example: python interview prep
# Negative indexes are the indexes from the end of a list, tuple, or string
arr = [1, 2, 3, 4, 5, 6]
#get the last element
print(arr[-1]) #output 6
#get the second last element
print(arr[-2]) #output 5