0 votes
in Python by
Can you please explain what is the use of the dictionary in Python Language?

1 Answer

0 votes
by

A dictionary has a group of objects (the keys) map to another group of objects (the values). A Python Language 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 Language types.

Related questions

0 votes
asked Aug 30, 2020 in Python by sharadyadav1986
0 votes
asked Aug 30, 2020 in Python by sharadyadav1986
...