how to search in an list if there are duplicates code example
Example 1: how to check if there are duplicates in a list python
>>> your_list = ['one', 'two', 'one']
>>> len(your_list) != len(set(your_list))
True
Example 2: python check for duplicate
def checkDuplicate(user):
if len(set(user)) < len(user):
return True
return False