0 votes
in Python by
Can you please explain what is a dictionary in Python Language?

1 Answer

0 votes
by

A dictionary is a data structure known as an associative array in Python Language 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.

...