I hope the question i have here is relatively simple to solve.
I have my dictionary:
dictionary = {"foo":12, "bar":2, "jim":4, "bob": 17}
What I would like to do is iterate over the dictionary, but over the values instead of the keys, so i can use the values in another function.
For example, i want to test which dictionary values are greater than 6, and then store the keys in a list. my code at the moment looks like this:
list = []
for c in dictionary:
if c > 6:
list.append(dictionary[c])
print list
and then, in a perfect world, list would feature all the keys who's value was greater than 6.
however, at the moment, all my for loop is iterating over is the keys, and i would like to change that to the values!
any help is greatly appreciated. thank you