I have these values in dataset in a pandas dataframe column
col1
[[1,2],[1,2]]
[[3,4],[3,4]]
[[5,6],[5,6]]
I want to get a new column of two elements as list in new columns as rows.
This is the columns that I want to get.
col1 col2
[1,1] [2,2]
[3,3] [4,4]
[5,5] [6,6]