how can merge the similar file's name together? for example, I have
{"Apple USA": 25$, "Apple Japan": 26$, "Avocado Mexico":30$, "Avocado Brazil":35$}
then I want to know the total amount of cost of Apple and Avocado. how should I do that in Python?
And I want to have a table that shows
{"Apple":51$,"Avocado":65$}
Thank you!