Basics of Python-8
Day 8 Dictionary : An unordered collection of data types that has a "Key" and "Value". The key is immutable whereas the value is mutable. Let's solve a problem : Write a python program to sort a dictionary based on keys. from collections import Ord...
Mar 12, 20232 min read10
