Let's say I have the following list:
the_list = ['one','two','three','four','five']
How can I slice this python list so that my output is the following (print order does not matter):
'one','five','four'
I essentially want to start at index 0 and then slice backwards
Thanks!