Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 654 Bytes

README.md

File metadata and controls

10 lines (7 loc) · 654 Bytes

Word Guessing Game

In this game, there is a list of words present, out of which our interpreter will choose 1 random word. The player has to guess the word that the computer has chosen randomly by guessing a letter in each turn.

Implementation

  1. The user has to first input 12 names and then, the computer will randomly choose one word among the list of 12 words.
  2. You will be asked to guess an alphabet in each attempt.
  3. If the random word contains that alphabet, it will be shown as the output(with correct placement) else the program will ask you to guess another alphabet.
  4. The user will be given 12 turns to guess the complete word.