Write a program that inputs a tuple having words of a string as its element e.g.
("THE", "QUICK", "BROWN", "FOX") and then translate each text element into
Pig Latin.
Pig Latin is loosely defined as taking the first letter of each word, putting it at the
end of the word, and adding "ay" to the end of each word. So the output becomes
"HETAY UICKQAY ROWNBAY OXFAY"
Answers
Answered by
0
Answer:
In Tuple we can't change data type
Similar questions