Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python has duplicates

def has_duplicates(lst):
    return len(lst) != len(set(lst))
    
x = [1,2,3,4,5,5]
has_duplicates(x) 			# True
 
PREVIOUS NEXT
Tagged: #python #duplicates
ADD COMMENT
Topic
Name
5+7 =