How do I print the reverse of a specific selection of a list ?
For example, I have a list,
a = [11,22,33,44,55,66,77,88]
I expect a[1:4:-1] to print [44,33,22], but it gives an empty list.
I have seen Understanding slicing, but I couldn't find an answer.