# To get the last element in a list you use -1 as position bikes = ['trek', 'redline', 'giant'] bikes[-1] # Output: # 'giant'

Read more of this post