What are Python's dictionaries?

Hi, I want to know what are python dictionaries

1 Like

They’re Python’s presupplied mapping from keys to values. Docs here:

https://docs.python.org/3/library/stdtypes.html#dict

You seem to be asking an assortment of quite specific low level context
free questions. Have you tried resolving these questions by looking at
Python’s docs above?

Most people come here with something a little more nuanced, such as when
they’ve tried something and had a problem or read something and found it
unclear.

Cheers,
Cameron Simpson cs@cskk.id.au

1 Like