0 votes
in Python by (30.5k points)
What Is The Use Of The Dictionary In Python?

1 Answer

0 votes
by (30.8k points)

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.

Related questions

...