0
How to convert this into PIG LATIN
If the tuple is ("The", "quick", " brown", "fox")
3 Antworten
+ 5
How would you move the first characters to the end and add "ay"?
+ 3
You can copy the elements into a list, do the Pig Latin thing as you copy the elements to the list. You can then transform the list back into a new tuple. Tuples are immutable, you can't modify its content, hence the use of a temporary list.
0
Yes