Answers for "remove duplicate elements in list python"

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

python remove duplicates from list

''' we can convert the list to set and then back to list'''
a=[1,1,2,3,4,5,6,6,7]
'''b=(list(set(a))) # will have only unique elemenets'''
Posted by: Guest on September-29-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
0

remove duplicates from list python

>>> list(dict.fromkeys('abracadabra'))
['a', 'b', 'r', 'c', 'd']
Posted by: Guest on August-29-2021

Code answers related to "remove duplicate elements in list python"

Python Answers by Framework

Browse Popular Code Answers by Language