Python for beginners- Dictionary Operations
Dictionary is one of the type of collections in python. It combines variety of data items under a common name. Syntax be like, Name={ "Membername1":"Value", "Membername2":"Value", ........................................ "Membernamen":"Value" } An example is given below... Eg: Creating a dictionary named "sunglass" sunglass = { "brand": "Suntrack" "model": "Wideangle" "Year " : "2023" } To print the...