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
Get step-by-step solutions from verified subject matter experts
