I need to parse the column mapping
and fetch the key value pairs from the second object in array. I would like to create new columns with the fetched data. The data looks like this:
row mapping
1 [{'adUnitCode': ca, 'id': 35, 'name': ca}, {'adUnitCode': hd, 'id': 11, 'name': HD}]
2 [{'adUnitCode': bb, 'id': 56, 'name': jk}, {'adUnitCode': hm, 'id': 12, 'name': HM}]
3 [{'adUnitCode': gh, 'id': 78, 'name': ff}, {'adUnitCode': hk, 'id': 13, 'name': HK}]
The desired output:
row adUnitCode id name
1 hd 11 HD
2 hm 12 HM
3 hk 13 HK