Answers for "how to remove repeating characters in a string in 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
1

python remove repeated characters from string

''.join(list(dict.fromkeys(list(messagel))))
Posted by: Guest on May-07-2021

Code answers related to "how to remove repeating characters in a string in python"

Python Answers by Framework

Browse Popular Code Answers by Language