Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Bird Language by dima.barnas
VOWELS = "aeiouy"
def translation(phrase):
count = 0
word = ""
while count < len(phrase):
word += phrase[count]
if phrase[count] in VOWELS:
count += 3
elif phrase[count] not in VOWELS and phrase[count] != " ":
count += 2
elif phrase[count] == " ":
count += 1
return word
Sept. 22, 2017
Comments: