Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python min in dictionary

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

# get key with min value
min_key = min(a_dictionary, key=a_dictionary.get)

print(min_key)
# print output => "a"
 
PREVIOUS NEXT
Tagged: #python #min #dictionary
ADD COMMENT
Topic
Name
6+6 =