Answered You can hire a professional tutor to get the answer.

QUESTION

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:

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.

Using python 3, design a function pig_latinify(n): 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'.
Show more
LEARN MORE EFFECTIVELY AND GET BETTER GRADES!
Ask a Question