A simple Python program that translates English text into Pig Latin.
- If a word starts with a vowel β add "way"
Example:appleβappleway - If a word starts with a consonant β move the first letter to the end and add "ay"
Example:helloβellohay
Run the program in your terminal:
python piglatin.py
Enter a sentence: hello world
Pig Latin: ellohay orldway