in Python by (31.6k points)
What Is The Use Of The Dictionary In Python?

1 Answer

0 votes
by (32.2k 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

+1 vote
asked Feb 15, 2021 in Python by SakshiSharma (32.2k points)
...