Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First --with re solution in Clear category for Bird Language by wyf.141060
import re
def translation(phrase):
return ''.join([word[0] for word in re.findall(r'([ ]|[^aeiouy][a-z]|[aeiouy]{3})', phrase)])
Dec. 11, 2018