Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
re.findall solution in Clear category for Bird Language by sotirr
import re
def translation(phrase):
regex = '(\s|[^aeiouy].|.{3})'
result = [i[0] for i in re.findall(regex, phrase)]
return ''.join(result)
Jan. 8, 2020
Comments: