This is simple python program to play "Guess The Word" game. To limit the choices, we only use ASEAN country names as the answer options.
Language: Python
- Library: random
The rule of game will be like this:
- First, you will see the the blank strip
(_ _ _ _ _ _)
which indicate the hidden word. - Next, you guess the letter, for example,
a
. - The program will check whether the letter
a
is in the word. - If it is, then it will reveal the letter position(s) in the word.
- If it isn't, then you will be calculated as
wrong
. - If you have
wrong
for 5 times, then Game Over! - You win the game if you can reveal the word.
To see how the game is played, click below link for video demonstration: https://drive.google.com/file/d/1kefcjqzJDNWt8tHp0H2ZWZvIqfSj2yER/view?usp=sharing
Have a nice game! :)