Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python remove duplicates from list

''' we can convert the list to set and then back to list'''
a=[1,1,2,3,4,5,6,6,7]
'''b=(list(set(a))) # will have only unique elemenets'''
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #python #remove #duplicates #list
ADD COMMENT
Topic
Name
2+8 =