Answers for "python get non duplicates in 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
1

sort and remove duplicates list python

myList = sorted(set(myList))
Posted by: Guest on June-25-2020

Code answers related to "python get non duplicates in list"

Python Answers by Framework

Browse Popular Code Answers by Language