So I need to write a python code for getting all the keys in a dictionary with unique values. For example
my_dict = {4:3, 5:3, 6:4, 9:8}
the program should print
[6, 9]
Because the 3 is repeated in the values. I do not know how to see if the values are different and then how to remove them as there is no ".remove()" for dictionaries. I have tried making a list of keys and values, then trying to mutate them in some way, but I have had no luck. Thanks