Answers for "remove duplicate strings from array python"

4

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
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 strings from array python"

Python Answers by Framework

Browse Popular Code Answers by Language