I want to be able to create a Python program that can translate a given english string to pig latin
- It's a basic python program which takes the user input and translates the string into pig latin
- Just run the program and enter a string
- Result will be displayed as a new string with pig latin translation
- Wrote rough draft algorithm
- Created pull request for feedback
- Got feedback and implemented
- Checked if translating properly
- Tweaked algorithm to do pig latin correctly and handle big test cases
- Install Python 3 from PyCharm or other Python IDE
- Download this repository as zip and extract.
- Use PyCharm or other Python compiler to run this program
- Run the code and try entering different strings
- When function gets string, it splits it by spaces to create a list of words
- Loops through each word and converts it into pig latin
- Puts words together and converts it into final string
Comnk
Comnk |
Program cannot handle giant strings, will need to fix algorithm to support larger strings