Wordle Project

In this project, I used python to recreate the popular game Wordle. My version of Wordle starts by selecting a random word from a given list of 15,000+ 5-letter words. The user then has five attempts to guess the random word. Each attempt must be a word in the word list. Each attempt that isn't a word or a word in the list, will prompt the user to enter another guess. After each valid guess, the user will be provided clues based on that guess. Green letters signify that the letter is in the word and in the correct position. Yellow letters signify that the letter is in the word but not in the correct position. Grey letters signify that the letter is not in the word. The "Known" letters (letters in the correct position) are displayed to the user after each guess. Letters that are in the word (green/yellow), as well as, letters that have been guessed that are not in the word are alphabetically sorted and shown to the user after each guess.