Python

Python Dictionaries Examples1 min read

Dictionaries are another data type that supports a {key: value} structure.

Creating a dictionary is as simple as placing items inside curly braces {} separated by commas.




An item has a key and a corresponding value that is expressed as a pair (key: value).

While the values can be of any data type and can repeat, keys must be of immutable type (string, number or tuple with immutable elements) and must be unique.

To access the value, you use the key. Here’s an Python example:

Python Code:

Output:

 

Example:

 

Leave a Comment