I have n
lists with n
elements which looks like this, in this example I will show only one with 2
elements, but it could be n
:
['-', '-']
['4.500.740', '924.372']
['1.978.095', '3.802.674']
['3.434.599', '3.614.503']
['8.588.294', '4.973.343']
I need to create one single nested list that looks like the next one:
[['-','4.500.740','1.978.095','3.434.599','8.588.294'],['-','924.372','3.802.674','3.614.503','4.973.343']]
I've been looking with many related questions to this, but I can't figure it out yet, so any advice will be appreciated.