Sorry for this basic question but my searches on this are not turning up anything other than how to get a dictionary\'s key based on its value which I would prefer not to us
You should iterate over keys with:
for key in mydictionary: print "key: %s , value: %s" % (key, mydictionary[key])