Skip to content

Commit 72bd8a8

Browse files
authored
Add README for Hangman with Hints issue #868
1 parent 517e0f1 commit 72bd8a8

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

868_HANGMAN_WITH_HINTS/README.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# Hangman with Hints
2+
3+
## Issue #868
4+
5+
### Description
6+
Guess the word with limited attempts and optional hints for each word.
7+
8+
### How to Run
9+
```bash
10+
python hangman_with_hints.py
11+
```
12+
13+
### Features
14+
- Terminal-based Hangman game
15+
- 8 words with hints
16+
- Visual hangman display
17+
- 6 wrong attempts allowed
18+
- Optional hint system (one per game)
19+
- Input validation
20+
- Shows guessed letters
21+
22+
### Gameplay
23+
1. A random word is selected
24+
2. Guess letters one at a time
25+
3. Type "hint" to reveal a clue (once per game)
26+
4. Win by guessing all letters before running out of attempts
27+
5. Lose after 6 wrong guesses
28+
29+
### Word List
30+
The game includes words like:
31+
- python
32+
- computer
33+
- keyboard
34+
- internet
35+
- algorithm
36+
- database
37+
- software
38+
- hardware
39+
40+
### Requirements
41+
- Python 3.x
42+
- No external dependencies

0 commit comments

Comments
 (0)