Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Bird Language by Rafal__Kotas
VOWELS = "aeiouyAEIOUY"
def translation(phrase):
new=list(phrase)
print (new)
for i in range(len(new)):
if(VOWELS.count(new[i])==0 and new[i]!=' '):
if(i+1
Nov. 6, 2016