Python Boot Camp 3 — Dictionary and Set
Do you really understand Python Dictionary and Set?
Python Dictionary and Set Basics
In Python, a dictionary is a collection of elements consisting of pairs of keys and values. For example:
dict_1 = {
'name': 'Tony',
'location': 'earth',
'work': 'DevOps'
}