File tree Expand file tree Collapse file tree 1 file changed +42
-0
lines changed
Expand file tree Collapse file tree 1 file changed +42
-0
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments