from .const import marsey_mappings from random import choice def marsify(text): new_text = '' for x in text.split(' '): new_text += f'{x} ' if 3 < len(x) < 10 and x in marsey_mappings: marsey = choice(marsey_mappings[x]) new_text += f':{marsey}: ' return new_text