A dictionary maps keys to values and in some languages it is known as an associative array.
Where k1,k2 are keys and v1,v2 are values
if key is not available a new key, value pair is added else value is updated
Remove an element with key bob
>>> students={"bob":90,"tom":50,"ram":70}
>>> for key in students:
... print(key,students[key])
...
bob 90
tom 50
ram 70
Note: key is not a key word
items() method return all the elements in key,value pair