Explain the dictionary in Python.
Answers
Answered by
0
About dictionaries in Python. ... A dictionary maps a set of objects (keys) to another set of objects (values). A Python dictionary is a mapping of unique keys to values. Dictionaries are mutable, which means they can be changed. The values that the keys point to can be any Python value.
Answered by
0
Dictionaries are mutable. In python, Unordered collections with elements in the form of a key value pair that associate keys to value are dictionary . In dictionary, the updation and addition of elements are similar in syntax.
Similar questions