Answers for "python code to remove duplicate from string"

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
2

remove duplicates function python

def remove_dupiclates(list_):
	new_list = []
	for a in list_:
    	if a not in new_list:
        	new_list.append(a)
	return new_list
Posted by: Guest on September-22-2020

Code answers related to "python code to remove duplicate from string"

Python Answers by Framework

Browse Popular Code Answers by Language