is there any sort function to sort dictionary python code example
Example: sort the dictionary in python
d = {2: 3, 1: 89, 4: 5, 3: 0}
od = sorted(d.items())
print(od)
d = {2: 3, 1: 89, 4: 5, 3: 0}
od = sorted(d.items())
print(od)