I\'ve looked through a few of the questions here and none of them seem to be exactly my problem. Say I have 2 dictionaries, and they are dict1
{\'A\': 25 ,
As you know that your two dictionaries will always have the same keys, you could use:
finaldict = {key:(dict1[key], dict2[key]) for key in dict1}
to combine them, where each value would be a tuple of the values from the source dictionaries.