This is a simple Hangman game implemented in Python. The game selects a random word, and the player must guess letters to figure out the word. The player has a limited number of incorrect guesses before they lose the game.
- ASCII art for the hangman drawing.
- Word list generated randomly with a specified length and count.
- Keeps track of lives and updates the hangman image for incorrect guesses.
- Displays the current state of the word as underscores (
_
) and fills in correct guesses.
- Python 3.x
pyfiglet
library for ASCII art rendering.
To run this project, you'll need to have Python 3.x installed. You can install the required dependencies using pip:
pip install pyfiglet
- Clone the repository or download the project files.
- Ensure all dependencies are installed.
- Run the main.py script.
python main.py
- The game will prompt you to guess a letter. Type a letter and press Enter.
- The game will display the current word and how many lives you have left.
- Continue guessing until you either:
- Correctly guess the word (you win).
- Run out of lives (you lose).
- The game starts by showing the hangman drawing.
- Each time you make an incorrect guess, the drawing updates.
- If you guess a letter correctly, it appears in the word.
- The game ends when you either guess the word or run out of lives.