Chapter 4: Dictionaries and Sets
Dictionaries:
A dictionary is a collection of key-value pairs.
A key is used to identify data.
A value is the actual data associated with that key.
Example:
countries = {
'IN': 'India',
'G
core-python.hashnode.dev24 min read