dict
Dict (noun) means an informal written shortening of dictionary, common in file names, software packages and note-taking. Example: “He shipped the spell-checker with a 60,000-word dict.”
How to use dict
Learner’s notesIn plain EnglishA store of things you look up by name instead of by number.
Technical and informal; standard in Python documentation and code, rare outside computing.
Fill the gap
Can you complete this real example?
He shipped the spell-checker with a 60,000-word _____.
Etymology
A shortening of dictionary.
Synonyms
View more →Related words
Rhymes for dict
See all rhymes for dict →Frequently asked questions
What is the difference between a dict and a list?
A list holds items in order and you reach them by position, such as items[0]. A dict holds key-value pairs and you reach a value by its key, such as user['email']. Use a list when order matters and a dict when you need to look things up by name.
Are dicts ordered?
In Python, dicts have kept insertion order since version 3.7, so iterating over one returns keys in the order they were added. That is a property of the language version, not of the idea of a dictionary in general.
What is the meaning of dict?
"dict" (noun) means an informal written shortening of dictionary, common in file names, software packages and note-taking.
What is another word for dict?
Other words for "dict" include dictionary, hash map, associative array, hash table.