I have a python list of dictionaries like this:
[{'George': {u'finance': {u'investing': {u'venture capital': 'Peter'}}}},
{'George': {u'finance': {u'investing': {u'venture capital': 'John'}}}},
{'George': {u'finance': {u'investing': {u'venture capital': 'Kate'}}}}]
And I want to groupby so the final results would be:
{'George': {u'finance': {u'investing': {u'venture capital': ['Peter','John','Kate'}}}}
How do i groupby this list of dictionaries ?