This is my original dataframe. Every row has an email and a list of addresses (There is just street to exemplify).
email addresses
[email protected] [{'street': 'a'}, {'street': 'b'}]
[email protected] [{'street': 'c'}]
And I expect this result:
email street
[email protected] 'a'
[email protected] 'b'
[email protected] 'c'
Is there a better way in pandas than iterate over the array to create this last dataframe?