Supose my dictionary: mydict = [{"red":6}, {"blue":5}, {"red":12}]
This is what I've done so far:
for key, value in mydict() :
if key == mydict.keys():
key[value] += value
else:
print (key, value)
I don't think I'm getting it quite right (been stuck for hours), but I want the output to look like this:
blue 5
red 18
or
red 18
blue 5
you cannot have a dictionary with same keys.... For definition keys are unique! and the last assignement of a key, overwrite the previous one
I do not recommend this since it results a messy design:
EDIT: I see you changed the initial object...