1 2 3 4 5
import re def replace(string, char): pattern = char + '{2,}' string = re.sub(pattern, char, string) return string