so i have a tuple in python and i need to slice from the last element to first element but only want the last and first...
example:
big tuple: (1,2,3,4,5)
i want to slice the tuple so i end up with (5,1)
some_list[::len(some_list)-1]
above code slices from first to last and only includes the first and last..taken from here! so i need the exact opposite.