Why does the Python code below reverse my_tuple
my_tuple = (1, 2, 3, 4, 5) my_tuple[4:-6:-1]
But this code below doesn\'t. It outputs ().