Question: Create a function that turns text into pig latin. Pig latin is a simple text transformation that modifies each word by: moving the first character
Create a function that turns text into pig latin. Pig latin is a simple text transformation that modifies each word by:
moving the first character to the end of each word;
then appending the letters ay to the end of each word.
For example, python ends up as ythonpay.
def piglatintext:
say
# Separate the text into words
words text.split
for word in words:
# Create the pig latin word and add it to the list
piglatinword word :ay
# Turn the list back into a phrase
piglatintext joinpiglatinwords
return piglatintext
printpiglatinhello how are you" # Should be "ellohay owhay reaay ouyByn
printpiglatinprogramming in python is fun" # Should be "rogrammingpay niay yt
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
