Answered step by step
Verified Expert Solution
Link Copied!

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 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
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions