Defining Python’s Dictionary Object
A dictionary is an object that stores a collection of data with each element being made up of two parts, a key, how you reference the element, and the value that is stored. This is sometimes called a key-value pair. When you want to access a certain element’s data, you can use the key to…