I will try to be as concise as possible here with my problem. I am working on a file containing to separate types of lists.
-
The first list is a list of strings, and the second list contains 9 items of data.
-
The list with 9 different items is such that the data needs to be transposed before it can be used effectively. The list of strings does not need transposed.
-
My problem is that I would like to combine the two such that the combined list shows "0-List, 1-List, 2-List, etc. However, as you can see on the far right, the combined list has an extra layer of nesting (1-List has a “nested” 0-List, 1-List, 2-List, etc).
-
What steps do I need to take to remove that extra nesting of lists? Hopefully I have explained my situation clearly enough.