Accessing Dictionary Element
(Dictionary is - key:value pairs and values can be obtained through key)
Updating Dictionary Element
dictionary[key]=new_value
if not an existing key, new value will be added
Traversing a Dictionary
(Through keys, no index)