Answers for "remove duplicate words in a string python"

8

Python program to remove duplicate characters of a given string.

>>> foo = 'mppmt'
>>> ''.join(sorted(set(foo), key=foo.index))
'mpt'
Posted by: Guest on August-24-2020
3

python remove duplicates words from string

def unique_list(l):
    ulist = []
    [ulist.append(x) for x in l if x not in ulist]
    return ulist

a="calvin klein design dress calvin klein"
a=' '.join(unique_list(a.split()))
Posted by: Guest on February-23-2020
8

remove duplicates python

mylist = ["a", "b", "a", "c", "c"]
mylist = list(dict.fromkeys(mylist))
Posted by: Guest on May-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 "remove duplicate words in a string python"

Python Answers by Framework

Browse Popular Code Answers by Language