Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started