Write some characteristics of dictionaries.
Answer:
(a) A dictionary is an unordered set of key: value pairs.
(b) A dictionary is not in sequence.
(c) Dictionaries are indexed by keys.
(d) Keys of a dictionary must be unique.
(e) Dictionaries are mutable i.e. Value of a key can be changed in place.