Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Simple solution in Clear category for Bird Language by Fermax
VOWELS = "aeiouy"
def translation(phrase):
output = ""
c = 0
while c < len(phrase):
output += phrase[c]
if phrase[c] in VOWELS:
c = c + 3
elif phrase[c] == ' ':
c = c + 1
else:
c = c + 2
return output
June 27, 2014
Comments: