How to find last index of list in Python?
# To get the last element in a list you use -1 as position bikes = ['trek', 'redline', 'giant'] bikes[-1] # Output: # 'giant'
# To get the last element in a list you use -1 as position bikes = ['trek', 'redline', 'giant'] bikes[-1] # Output: # 'giant'