Question: Python Problem Pig Latin is a game that children often play. It is a way of encoding a word that can be described by two

Python Problem

Pig Latin is a game that children often play. It is a way of encoding a word that can be described by two simple rules:

If the word begins with a vowel ('a', 'e', 'i', 'o' or 'u'), add 'yay' to the end of the word.

If the word begins with a consonant (the other letters), take all the consonants before the first vowel, add them to the end of the word, and then add 'ay' to the end of the word.

Write a function that takes a word n and returns its Pig Latin equivalent.

For example:

If n = 'aArdvArk', pig_latinify(n) should return 'aArdvArkyay'.

If n = 'wombat', pig_latinify(n) should return 'ombatway'.

If n = 'Thylacine', pig_latinify(n) should return 'acineThylay'.

n is a non-empty string and contains at least 1 vowel,r function should return a value of type str and work for letters in both upper and lower case (and a mixture).

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!