def filter_text(text): | |
text = text.replace('DelishTM', 'Delish!™') | |
text = text.replace('Delish!TM', 'Delish!™') | |
text = text.replace('Delish™', 'Delish!™') | |
return text | |
def filter_text(text): | |
text = text.replace('DelishTM', 'Delish!™') | |
text = text.replace('Delish!TM', 'Delish!™') | |
text = text.replace('Delish™', 'Delish!™') | |
return text | |