are dictionaries indexable?
yes, indexed by keys rather than numerical position
you can ‘look things up’
indices of dictionaries are keys of arbitrary value
method that takes a key as an argument and returns the value associated with it
if the key doesn’t exist it will return none
.get()
takes a key as an argument and returns the value but also deleting the kay-value pair
.pop()
mutating method
returns KeyError is key isn’t in the dictionary
deletes the entire contents
.clear()