0 votes
in Python by
What Is A Dictionary In Python Programming?

1 Answer

0 votes
by

A dictionary is a data structure known as an associative array in Python which stores a collection of objects.

The collection is a set of keys having a single associated value. We can call it a hash, a map, or a hashmap as it gets called in other programming languages.

Related questions

0 votes
asked May 24, 2020 in Python by SakshiSharma
0 votes
asked May 16, 2020 in Python by Robindeniel
...