Answers for "# This function looks for duplicates in list n. If there is a duplicate True is returned. If there are no duplicates False is returned."

3

how to check if there are duplicates in a list python

>>> your_list = ['one', 'two', 'one']
>>> len(your_list) != len(set(your_list))
True
Posted by: Guest on December-12-2019
1

python check for duplicate

def checkDuplicate(user):
    if len(set(user)) < len(user):
        return True
    return False
Posted by: Guest on November-20-2020

Code answers related to "# This function looks for duplicates in list n. If there is a duplicate True is returned. If there are no duplicates False is returned."

Python Answers by Framework

Browse Popular Code Answers by Language