I need to get last three elements of the list without evaluating the length of the list. Following code displays what I expect:
sports = ['cricket', 'football', 'volleyball', 'baseball', 'softball', 'track and field', 'curling', 'ping pong', 'hockey']
last = ['curling', 'ping pong', 'hockey']