Answers for "list remove duplicate"

36

python remove duplicates from list

mylist = ["a", "b", "b", "c", "a"]
mylist = sorted(set(mylist))
print(mylist)
Posted by: Guest on October-26-2020
2

remove duplicates from a list of lists python

k = [[1, 2], [4], [5, 6, 2], [1, 2], [3], [4]]
new_k = []
for elem in k:
    if elem not in new_k:
        new_k.append(elem)
k = new_k
print k
# prints [[1, 2], [4], [5, 6, 2], [3]]
Posted by: Guest on August-26-2020
1

python remove duplicates

word = input().split()

for i in word:
  if word.count(i) > 1:
    word.remove(i)
Posted by: Guest on February-04-2020

Code answers related to "list remove duplicate"

Python Answers by Framework

Browse Popular Code Answers by Language