Let's say I have the dictionary:
fruitEaten = {"apple": 1, "orange": 1, "tomato": 2}
How could I go about finding which keys have 1 (in this example, that being apple and orange)?
And how could I figure out the number of keys in this example that have the value 1 is 2?