Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python Sort the dictionary based on values

dt = {5:4, 1:6, 6:3}

sorted_dt_value = sorted(dt.values())
print(sorted_dt_value)
Source by www.programiz.com #
 
PREVIOUS NEXT
Tagged: #python #Sort #dictionary #based #values
ADD COMMENT
Topic
Name
9+5 =