I have been stuck on understanding this slice operation for a couple of hours. Small insignificant but I can't get past it.
MyList = ['blue', 'red', 'yellow', 'white', 'orange']
MyList[-1:1:-1]
and it returns the following:
['orange', 'white', 'yellow']
I am not understand how the first is '-1' and second is '1' with interval of '-1' and it returns [4][3][2] or [-1][-2][-3].