0
Write a program to remove non repeating elements from a list provided by user
don't just print the no. edit the list
2 Respostas
+ 1
You may give {sets} a try.
+ 1
a=[1,1,3,6,5,4,1,5,3,2,5,1]
print(list(set(a))
don't just print the no. edit the list