i have a list like this :
data = ["a","b","c","d","e","f","g","h","i","k"]
and list of indices like this :
idxs = [2,6,8]
and i want the result be these lists :
["a","b","c"]
["d","e","f","g"]
["h","i"]
["k"]
i have a list like this :
data = ["a","b","c","d","e","f","g","h","i","k"]
and list of indices like this :
idxs = [2,6,8]
and i want the result be these lists :
["a","b","c"]
["d","e","f","g"]
["h","i"]
["k"]