ages = {'Matt' : 30, 'Katie': 29, 'Nik': 31, 'Jack': 43} #get the max value in Python dict max_value = max(ages.values()) print(max_value) #get the key for a dicts max value max_key = max(ages, key=ages.get) print(max_key)