0
How to print duplicate item from a list?
2 Réponses
+ 4
Search before asking!!
where is your attempt?
lst=[1, 2,3,4,2,5,6,6,2]
lst=list(set(lst))
print(lst)
# [1,2,3,4,5,6]
# answering your question
lst=[1, 2,3,4,2,5,6,6,2]
for i in lst:
if lst.count(i) > 1:
print(i)