Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
re solution in Creative category for Bird Language by juestr
import re
def translation(phrase):
return re.sub(r'(([^aeiouy\s][aeiouy]|[aeiouy]{3}))', lambda s: s[0][0], phrase)
April 15, 2019
Comments: