A little game written to show some possibilities of Python language.
Find a file
2024-12-27 19:36:43 +01:00
.gitignore add tests 2024-12-27 19:36:43 +01:00
README.md add tests 2024-12-27 19:36:43 +01:00
secret_word.py add tests 2024-12-27 19:36:43 +01:00
tests.py add tests 2024-12-27 19:36:43 +01:00
words.py add tests 2024-12-27 19:36:43 +01:00

Secret Word Game | Hangman Game

CodeFactor Tests 14 passed Coverage 93%

A little game for fun where you need to discover a hidden word. You have 10 attempts to find it, letter by letter. If a letter is in the word, that letter appears for each occurrence in the word. Otherwise, you lose an attempt.

The code was written to show some possibilities of Python language to new programmers.