Dictionary

Dictionaries 
store 
the 
data 
values 
in 
the 
key-value
 
pairs.
Curly 
{} 
brackets 
are 
used 
to 
define 
a 
Dictionary. 
The 
Key-Value 
pairs 
inside 
the 
dictionaries 
are 
separated 
by 
a 
colon 
':'
. 
The 
left 
side 
is 
called 
the 
key
, 
and 
the 
right 
side 
is 
the 
value
.
You 
can 
access 
the 
values 
with 
the 
help 
of 
the 
keys 
as 
there 
is 
no 
indexing 
in 
Dictionaries
.
dict_name = { key : value }
dict_1 = { 'Theo' : 7717234567, 'Zo' : 8211132111 }
print(dict_1['Zo'])
#accessing the key 'Zo', to get the value