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 pig_latin(text):
say =""
# Separate the text into words
words = text.split()
for word in words:
# Create the pig latin word and add it to the list
pig_latin_word = word [1:]+"ay"
# Turn the list back into a phrase
pig_latin_text ="".join(pig_latin_words)
return pig_latin_text
print(pig_latin("hello how are you")) # Should be "ellohay owhay reaay ouyByn
print(pig_latin("programming in python is fun")) # Should be "rogrammingpay niay yt
 Create a function that turns text into pig latin. Pig latin

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!