Wordle in Python
Building a Wordle Game in Python
“I am not building a game. I am building a new country.” Philip Rosedale.
Here is the classic wordle from New York Times.
Play Wordle on The New York Times
Overview
I recently put together a Wordle-like game in Python, and I’d like to share my journey with you. In this post, I’ll walk you through the code step by step, discuss the obstacles I ran into, and point out some areas for improvement.
The game follows a straightforward approach:
-
Loading a Word List: We start by reading a file that contains a list of valid five-letter words.
-
Choosing a Secret Word: A random word from the list is selected as the secret word.
-
User Input: The player is prompted to guess the word.
-
Feedback with Colors: The game compares the guess with the secret word and provides color-coded feedback:
- Green: The letter is correct and in the correct position.
- Yellow: The letter exists in the word but is in the wrong position.
- Red: The letter does not appear in the word.
Six Attempts: The player gets six tries to guess the word correctly.
The code uses the “colorama” library to print colored text to the terminal, which adds a fun visual element to the game.
Code Walkthrough
1. Importing Libraries and Setting Up Colorama
1 | from colorama import Back, init |
- colorama: This library allows us to print colored text (in our case, colored backgrounds) to the terminal.
- random: Used to randomly select the secret word.
- init(autoreset=True): This line ensures that every print statement resets the terminal color, so you don’t have to worry about colors bleeding over into subsequent output.
2. Reading the Word List
1 | def read_word_list(): |
- Purpose: Opens and reads a text file (wordle/input-words.txt) containing valid five-letter words.
- Process:
- The file is read in its entirety.
- Extra whitespace is removed, and the content is split into a list of words based on newlines.
3. Selecting the Secret Word.
1 | def get_secret_word(): |
- Purpose: Chooses a random word from the word list to serve as the secret word.
- Process:
- Retrieves the list of words.
- Uses random.randint to pick an index, then returns the word at that index.
4. Getting and Validating User Input
1 | def get_user_input(): |
- Purpose: Receives user’s guess and validates that the input is exactly five alphabetic characters.
- Details:
- The input is trimmed and converted to uppercase.
- The loop continues until a valid word is entered.
5. Processing the Guess and Providing Feedback
1 | def get_user_result(): |
- Purpose: Compares the user’s guess to the secret word and generates a list of color codes for each letter.
- Process:
- Frequency Dictionary: Counts how many times each letter appears in the secret word.
- Initial Setup: Every letter in the guess is assumed to be incorrect (Red).
- Green Check: If a letter is in the correct position, it’s marked Green and its frequency is reduced.
- Yellow Check: If a letter is in the secret word but in the wrong position and still has a remaining count, it’s marked Yellow.
6. The Main Game Loop
1 | secret_word = get_secret_word() |
- Purpose: This loop allows the user up to 6 attempts to guess the secret word.
- Flow:
- The secret word is selected, and the user is prompted for their guess.
- For each guess, the game processes the input and prints each letter with a colored background.
- If the guess matches the secret word, the player is congratulated.
- If the guess is incorrect and there are still attempts remaining, the player is asked for another guess.
- After 6 attempts, if the user still hasn’t guessed the word, the correct answer is revealed.
Complete Code
1 | from colorama import Back, init |
Obstacles and Problems
-
Error Handling:
The code currently assumes the word list file exists and is correctly formatted. In future versions, I plan to add error handling for file I/O operations and user input errors. -
User Input Repetition:
The game structure uses global variables (user_input and secret_word) across functions. Refactoring to pass these values explicitly would improve readability and maintainability. -
Feedback Logic:
Although the current color-coding logic works well, edge cases (such as repeated letters) could be handled more elegantly. I’m considering ways to refine this logic for a more robust solution. -
UI/UX Enhancements:
Right now, the game runs in the terminal. A graphical interface or a web-based version could provide a more engaging user experience.