How could I add up the speed of these characters even if they don't all have the attribute speed? This is an example, there are many other attributes. The characters are picked randomly and grouped together:
character_1 = {'Money': .3, 'Strength': .25, 'Speed': .05}
character_2 = {'Money': .3, 'Age': 25, 'Speed': .7}
character_3 = {'Money': .3, 'Strength': .25, 'Power': 5}
How could I find out the combined speed, money, age etc of all these characters? (if age is not defined for others the right answer should be 25 years in total) thank you!!