Answers for "How can you sort Dictionary Directly by elements By Key By Values By key or value"

2

sort the dictionary in python

d = {2: 3, 1: 89, 4: 5, 3: 0}
od = sorted(d.items())
print(od)
Posted by: Guest on July-18-2020

Code answers related to "How can you sort Dictionary Directly by elements By Key By Values By key or value"

Python Answers by Framework

Browse Popular Code Answers by Language