Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Bird Language by Moff
import string
def translate(cipher):
vowels = 'aeiouy'
plain = ''
i = 0
while i < len(cipher):
c = cipher[i]
plain += c
if c in vowels:
i += 3
elif c in string.ascii_letters:
i += 2
else:
i += 1
return plain
July 27, 2015