Answers for "python find if the id has duplicates"

3

python has duplicates

def has_duplicates(lst):
    return len(lst) != len(set(lst))
    
x = [1,2,3,4,5,5]
has_duplicates(x) 			# True
Posted by: Guest on February-16-2021

Code answers related to "python find if the id has duplicates"

Python Answers by Framework

Browse Popular Code Answers by Language