Answers for "python remove repeated characters from combined strings"

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

Code answers related to "python remove repeated characters from combined strings"

Python Answers by Framework

Browse Popular Code Answers by Language