You can loop over the dictionary and extract the values using the items() function:
for key ,value in dictionary.items():
#loop body
Here "key" and "value" are the variables that contain the key and the value of the dictionary extracted on every iteration of the loop.