I am looking to remove duplicates in a python dictionary but only where the keys are the same. Here is an example.
original_dict = {'question a' : 'pizza', 'question b' : 'apple', 'question a': 'banana'}
I want to remove the 'question a' item so there would only be one 'question a'. The problem I am facing is that the values are not the same. Any way to do this easily in Python 3.x?