Python Dictionary
Hello friends, welcome to another session on Python Dictionary. In the last session, we discussed about Python Tuples. Dictionary is something which we have already used. A dictionary contains words and its meanings/synonyms alongside. In short, dictionary is a large sequence of ‘word-meaning’ pair. Python Dictionary on the other hand is a large sequence of ‘key-value’ pairs. Here you have a word which is key and a corresponding value for that key. Example: {‘car’:’four wheeler’, ‘bike’:’two wheeler’} In above example,…