File size: 191 Bytes
a4253dd
 
 
 
 
1
2
3
4
5
6
def filter_text(text):
    text = text.replace('DelishTM', 'Delish!™')
    text = text.replace('Delish!TM', 'Delish!™')
    text = text.replace('Delish™', 'Delish!™')
    return text