Computer Science, asked by aswinjaswin748, 5 months ago

write a python function that creates a list of words into pig latin. Write code​

Answers

Answered by shilpisingh12
0

Answer:

1234958365837475747484

Explanation:

48483748577

Answered by Iamonbrainlu
0

Answer:

def wordpiglatin(word):

give = ""

for i in range(1, len(word)):

give+=word[i]

give+=(word[0]+'ay')

return give

def main(sen):

give = ""

for i in sentence:

i = wordpiglatin(i)

give+=(i+' ')

give. rsplit()

return give

sentence = eval(input('enter the list: '))

print(main(sentence))

Similar questions