Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
String to list parsing and vice versa solution in Clear category for Bird Language by Sebastian.M
VOWELS = "aeiouy"
def translation(phrase):
words = phrase.split(' ')
print(words)
letters = []
for x in words:
letters.append(list(x))
print(letters)
word = []
for j in range(len(letters)):
i = 0
while i
Oct. 21, 2016