Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

sort the dictionary in python

d = {2: 3, 1: 89, 4: 5, 3: 0}
od = sorted(d.items())
print(od)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #sort #dictionary #python
ADD COMMENT
Topic
Name
2+2 =