I want to combine the elements in the multidimensional list.
I have a list the below
[
[
{ 'name': 'q' },
{ 'surname': 'w' },
{ 'email': 'e' }
],
[
{ 'name': 'a' },
{ 'surname': 's' },
{ 'email': 'd' }
]
]
I want to list to be like this;
[
{
'name': 'q',
'surname': 'w',
'email': 'e'
},
{
'name': 'a',
'surname': 's',
'email': 'd'
}
]
How can I do this with Python? Can you help me please? Thanks.