Answers for "Create list of unique values from dictionary"

0

Create list of unique values from 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 August-20-2021

Code answers related to "Create list of unique values from dictionary"

Python Answers by Framework

Browse Popular Code Answers by Language