Answers for "get maximum value of dictionary"

3

python how to find the highest number in a dictionary

a_dictionary = {"a": 1, "b": 2, "c": 3}

max_key = max(a_dictionary, key=a_dictionary.get)
get key with max value


print(max_key)
Posted by: Guest on June-05-2020
2

max element in dictionary python

import operator
stats = {'a':1000, 'b':3000, 'c': 100}
max(stats.iteritems(), key=operator.itemgetter(1))[0]
Posted by: Guest on March-18-2020

Code answers related to "get maximum value of dictionary"

Python Answers by Framework

Browse Popular Code Answers by Language