I have:
dictionary = {\"foo\":12, \"bar\":2, \"jim\":4, \"bob\": 17}
I want to iterate over this dictionary, but over the values instead of the
To just get the values, use dictionary.values()
dictionary.values()
To get key value pairs, use dictionary.items()
dictionary.items()