Appearance
CS101 Word Game: Python WORDLE!!!!
python
import pythonwordle.MyWordGame as wg
words = wg.WGLib.parseWordsFile('lowerwords.txt')
wg.startSession(words)Brief Description
This is exactly like the NY times wordle game, and will return green yellow or white boxes depending on whether or not your letter is in the correct position, part of the word, or not part of the word respectively. It will return the score based on how many tries you have left until your guesses are up.
Settings
There is only one level to this game but depending on what the correct answer is the difficulty is up to each time you play.
Rules of Play
You get 6 attempts, and the code will only allow you to move forward a guess if the input is valid. Your score reflects how many guesses you have left, and the higher the score you have the less guesses you took which is a positive.