I have a Pandas DataFrame column with multiple lists within a list. Something like this:
dfcol1
0 [[1,2], [2,3]]
1 [[a,b], [4,5], [x,y]]
2 [[6,7]]
I want to split the list over multiple columns so the output should be something like:
col1 col2 col3
0 [1,2] [2,3]
1 [a,b] [4,5] [x,y]
2 [6,7]
Please help me with this. Thanks in advance