min dictionary python code example
Example 1: python min in dictionary
a_dictionary = {"a": 1, "b": 2, "c": 3}
min_key = min(a_dictionary, key=a_dictionary.get)
print(min_key)
Example 2: python find smallest element in dictionary
d = {"A":3, "B":1, "C":100}
best_key = min(d, key=d.get)
print(best_key)
Example 3: python get the key with the max or min value in a dictionary
key_with_max_value = max(dictionary, key=dictionary.get)
max_value = dictionary[max(dictionary, key=dictionary.get)]
max_value = max(dictionary.values())
dictionary = {"a": 1, "b": 2, "c": 3}
max(dictionary, key=dictionary.get)
--> 'c'