In this article, we will be covering Dictionaries in Python.
In Python, creating a dictionary is quite easy and can store different types without being have to initilize like a type of array.
planets = {
"name": "jupiter",
"id": 1,
"note": None
}
Output of above example Dictionary in Python :
In above Python example, we created a dictionary and added 3 value to it. Finally, we displayed values of dictionary we created with Python.