Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
while_loop solution in Clear category for Bird Language by Totheheart
VOWELS = "aeiouy"
def translation(phrase):
human_phrase = ''
i = 0
while i < len(phrase):
human_phrase += phrase[i]
if phrase[i] in VOWELS:
i+= 3
elif phrase[i].isalpha():
i+= 2
else:
i+= 1
return human_phrase
Aug. 15, 2019