Answers for "python use dictionary to find unique values"

0

print all unique values in a dictionary

dict = {'511':'Vishnu','512':'Vishnu','513':'Ram','514':'Ram','515':'sita'}
list =[] # create empty list
for val in dict.values(): 
  if val in list: 
    continue 
  else:
    list.append(val)

print list
Posted by: Guest on July-30-2020

Code answers related to "python use dictionary to find unique values"

Python Answers by Framework

Browse Popular Code Answers by Language