python: takes a dictionary and returns the sum of all of the summable values in it
def sum_summables(dictionary):
total = 0
for v in dictionary.values():
if (isinstance(v, int) or isinstance(v, float)):
total += v
elif v.isnumeric():
total += float(v)
return total