0 votes
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.

Related questions

+1 vote
asked Feb 15, 2021 in Python by SakshiSharma
0 votes
asked Jan 10, 2021 in Python by rajeshsharma
...