I have a bunch of dicts such as ...
{u'APPLES': 1}
{u'PEARS': 7}
{u'BANANAS': 10}
{u'APPLES': 9}
{u'PEARS': 13}
{u'BANANAS': 20}
However I want to add them together so i end up with {"APPLES":10}
etc. What is the best pythonic way to do this.
Thanks,