in Python by
What Is The Use Of The Dictionary In Python?

1 Answer

0 votes
by

A dictionary has a group of objects (the keys) map to another group of objects (the values). A Python dictionary represents a mapping of unique Keys to Values.

They are mutable and hence will not change. The values associated with the keys can be of any Python types.

...