let's say I have a 3 nested lists. I would like to create a new nested lists so that the first nested list will contain first values from the prevoius 3 nested lists, the second nested list will contain second values from previous nested lists and so on. The example:
dd = [[5,8,3],[1,4,2],[1,2,3]]
dd = [[5,1,1],[8,4,2],[3,2,3]]