Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
replace solution in Creative category for Bird Language by DiZ
import re
def translation(phrase):
for i in 0,1:
phrase = re.sub(r"(([[^. ].)]\)1[\.1]"[i::2].replace('.',"aeiouy"), r"\1", phrase)
return phrase
June 26, 2014