summaryrefslogtreecommitdiff
path: root/progs/a67.py
blob: 842e41b4791966e11ebe1056ca906f743def9e85 (plain)
1
2
3
4
5
import re 
def replace(string, char): 
    pattern = char + '{2,}'
    string = re.sub(pattern, char, string) 
    return string