In this tutorial you will learn:
Python Dictionary
Dictionary is a resource that that lists words and their meaning. So Dictionary data type in Python follow a similar concept, they define a key and a value. They are declared using curly brackets. Dictionaries in Python are mutable it means the values in a dictionary can be changed and they are also indexed but unordered.
For example:
myDictionary1 = { "Language": "Python", "Type": "Book", "Time": 2}
A
Add new comment