not a python expert. I have a nested list like
result=[["a","b","c"],["d","e","f"],["g","h","i"], ...]
I would like to obtain separated lists for each sub list:
sublist1=["a","b","c"]
sublist2=["d","e","f"]
sublist3=["g","h","i"]
...
I know the "manual" procedure slicing using indexes, problem is that I have 20000 sublists and I am looking for a way to do that recursively and store the result in 20000 different list that are created automatically.
My current guess was to use a for loop like
for d in range(0, len(result)):
in order to have all the 20000 indexes, and than use slicing with theses indexes. Problem is that I have no idea of how to generate 20000 empty lists where to store each result in a way that is not manual. There are probably other alterntaives, but I could not think of anything that excluded rewriting the same command 20000 times.