Answers for "duplicate and item in a list"

2

how to find duplicate numbers in list in python

l=[1,2,3,4,5,2,3,4,7,9,5]
l1=[]
for i in l:
    if i not in l1:
        l1.append(i)
    else:
        print(i,end=' ')
Posted by: Guest on June-06-2021

Code answers related to "duplicate and item in a list"

Python Answers by Framework

Browse Popular Code Answers by Language