Skip to content
Home / Fundamentals

Getting the Key with the Maximum Value in a Dictionary in Python

A dictionary is a collection of key-value pairs, where each key is associated with a value. Dictionaries are commonly used in Python to store data that needs to be quickly retrieved. In this tutorial, we will learn how to get the key with the maximum value in a dictionary in Python.

Method 1: Using the max() function

The first method to get the key with the maximum value in a dictionary is to use the built-in max() function. The max() function takes an iterable as an argument and returns the maximum value.

To get the key with the maximum value in a dictionary, we can pass the dictionary to the max() function as an iterable and use the key parameter to specify the key function, which returns the value to be used for the comparison.

Here is an example:

# Dictionary with integer values
d = {'a': 1, 'b': 2, 'c': 3, 'd': 4}

# Get the key with the maximum value
max_key = max(d, key=d.get)

print(f"Key with maximum value: {max_key}")
Key with maximum value: d

In the example above, the max() function returns the key 'd', which has the maximum value 4 in the dictionary.

Method 2: Using the sorted() function

Another way to get the key with the maximum value in a dictionary is to use the built-in sorted() function. The sorted() function returns a sorted list of the elements in an iterable.

To get the key with the maximum value in a dictionary, we can pass the dictionary to the sorted() function as an iterable and use the key parameter to specify the key function, which returns the value to be used for the comparison.

Here is an example:

# Dictionary with integer values
d = {'a': 1, 'b': 2, 'c': 3, 'd': 4}

# Get the key with the maximum value
max_key = sorted(d, key=d.get, reverse=True)[0]

print(f"Key with maximum value: {max_key}")
Key with maximum value: d

In the example above, the sorted() function returns a sorted list of the elements in the dictionary in descending order based on the values, and the first element of the list is the key with the maximum value.

Method 3: Using the for loop

Another way to get the key with the maximum value in a dictionary is to use a for loop to iterate over the dictionary and keep track of the maximum value and its corresponding key.

Here is an example:

# Dictionary with integer values
d = {'a': 1, 'b': 2, 'c': 3, 'd': 4}

# Initialize variables
max_key = None
max_value = float('-inf')

# Iterate over the dictionary
for key, value in d.items():
  # Update maximum value and key if necessary
  if value > max_value:
    max_key = key
    max_value = value

print(f"Key with maximum value: {max_key}")
Key with maximum value: d

In the example above, the for loop iterates over the dictionary and keeps track of the maximum value and its corresponding key.

Method 4: Using the max() function and a lambda function

Another way to get the key with the maximum value in a dictionary is to use the max() function and a lambda function. A lambda function is a small anonymous function without a name.

To get the key with the maximum value in a dictionary, we can pass the dictionary to the max() function as an iterable and use the key parameter to specify a lambda function that returns the value to be used for the comparison.

Here is an example:

# Dictionary with integer values
d = {'a': 1, 'b': 2, 'c': 3, 'd': 4}

# Get the key with the maximum value
max_key = max(d, key=lambda x: d[x])

print(f"Key with maximum value: {max_key}")
Key with maximum value: d

In the example above, the lambda function returns the value of each key in the dictionary, and the max() function returns the key with the maximum value.