Python Data Structures — Dictionary
Sep 4, 2018 · 4 min read
Prerequisites : Basic knowledge of any programming language
we will explore Data Structure Dictionary and its common operations here.
Jupyter notebook on Dictionary
Dictionary is unordered set of key value pairs where keys should be unique within a dictionary.
Dictionaries are indexed by keys, they are mutable and dynamic- they can grow and shrink. The key and values can have any data type like strings or numbers.


