How to remove duplicate values from a dictionary in Python

1 Answer

0 votes
def remove_duplicates(dic):
    unique_values = {}
    
    for key, value in dic.items():
        if value not in unique_values.values():
            unique_values[key] = value
            
    return unique_values


dic = {'key1':34, 'key2':89, 'key3':89, 'key4':48, 'key5':50, 'key6':50, 'key7':50}

dic = remove_duplicates(dic)

print(dic) 
 
 
'''
run:
 
{'key1': 34, 'key2': 89, 'key4': 48, 'key5': 50}

'''

 



answered Dec 17, 2024 by avibootz
edited Dec 17, 2024 by avibootz

Related questions

...