Movatterモバイル変換


[0]ホーム

URL:


Open In App
Next Article:
21 Number game in Python
Next article icon

Hangman Wiki:

The origins of Hangman are obscure meaning not discovered, but it seems to have arisen in Victorian times, " says Tony Augarde, author of The Oxford Guide to Word Games. The game is mentioned in Alice Bertha Gomme's "Traditional Games" in 1894 under the name "Birds, Beasts and Fishes." The rules are simple; a player writes down the first and last letters of a word and another player guesses the letters in between. In other sources, [where?] the game is called "Gallows", "The Game of Hangin", or "Hanger". 

Implementation:

This is a simple Hangman game using Python programming language. Beginners can use this as a small project to boost their programming skills and understanding logic.  

  1. The Hangman program randomly selects a secret word from a list of secret words. The random module will provide this ability, so line 1 in program imports it.
  2. The Game: Here, a random word (a fruit name) is picked up from our collection and the player gets limited chances to win the game.
  3. When a letter in that word is guessed correctly, that letter position in the word is made visible. In this way, all letters of the word are to be guessed before all the chances are over. 
  4. For convenience, we have given length of word + 2 chances. For example, word to be guessed is mango, then user gets 5 + 2 = 7 chances, as mango is a five-letter word.

Example

Python
# Python Program to illustrate# Hangman GameimportrandomfromcollectionsimportCountersomeWords='''apple banana mango strawberryorange grape pineapple apricot lemon coconut watermeloncherry papaya berry peach lychee muskmelon'''someWords=someWords.split(' ')# randomly choose a secret word from our "someWords" LIST.word=random.choice(someWords)if__name__=='__main__':print('Guess the word! HINT: word is a name of a fruit')foriinword:# For printing the empty spaces for letters of the wordprint('_',end=' ')print()playing=True# List for storing the letters guessed by the playerletterGuessed=''chances=len(word)+2correct=0flag=0try:while(chances!=0)andflag==0:# Flag is updated when the word is correctly guessedprint()chances-=1try:guess=str(input('Enter a letter to guess: '))except:print('Enter only a letter!')continue# Validation of the guessifnotguess.isalpha():print('Enter only a LETTER')continueeliflen(guess)>1:print('Enter only a SINGLE letter')continueelifguessinletterGuessed:print('You have already guessed that letter')continue# If letter is guessed correctlyifguessinword:# k stores the number of times the guessed letter occurs in the wordk=word.count(guess)for_inrange(k):letterGuessed+=guess# The guessed letter is added as many times as it occurs# Print the wordforcharinword:ifcharinletterGuessedand(Counter(letterGuessed)!=Counter(word)):print(char,end=' ')correct+=1# If user has guessed all the letters# Once the correct word is guessed fully,elif(Counter(letterGuessed)==Counter(word)):# the game ends, even if chances remainprint("The word is: ",end=' ')print(word)flag=1print('Congratulations, You won!')break# To break out of the for loopbreak# To break out of the while loopelse:print('_',end=' ')# If user has used all of his chancesifchances<=0and(Counter(letterGuessed)!=Counter(word)):print()print('You lost! Try again..')print('The word was{}'.format(word))exceptKeyboardInterrupt:print()print('Bye! Try again.')exit()

Output: 

Please run the program on your terminal.  

omkarpathak@omkarpathak-Inspiron-3542:~/Documents/
Python-Programs$ python P37_HangmanGame.py
Guess the word! HINT: word is a name of a fruit
_ _ _ _ _

Enter a letter to guess: m
_ _ m _ _
Enter a letter to guess: o
_ _ m o _
Enter a letter to guess: l
l _ m o _
Enter a letter to guess: e
l e m o _
Enter a letter to guess: n
l e m o n
Congratulations, You won!

Code Explanation:

  1. The code starts by importing the random module.
  2. This module provides a way to generate random numbers.
  3. Next, the code creates someWords, which is a list of fruit names.
  4. The list is split into spaces using the string ' ', and then each space is replaced with a letter.
  5. Next, the code randomly selects a secret word from our someWords list.
  6. This word will be used as the input for the game later on.
  7. The next part of the code checks to see if the user has entered an alpha character (a letter that appears in front of other letters).
  8. If not, then they are asked to enter only a letter.
  9. If they enter an alpha character, then it's assumed that they want to guess at another letter in word .
  10. So, this part of the code checks to see if guess matches one of the letters in word .
  11. If it does, then chances is updated and flag is set to 1 .
  12. Otherwise, chances is decreased by 1 and flag remains at 0 .
  13. The next part of the code tries to guess at another letter in word .
  14. If guess isn't valid (i.e., it doesn't match any of the letters in word ), then print() prints out all empty spaces for letters in word , and
  15. The code starts by importing the random module.
  16. This module provides us with a number of useful functions, one of which is the choice function.
  17. This function allows us to randomly choose a secret word from our list of words.
  18. Next, we create some variables which will be used throughout the program.
  19. These include someWords , word and letterGuessed .
  20. letterGuessed will store the letter guessed by the player, while chances will store the number of times that the player has correctly guessed the word so far.
  21. correct will keep track of how many letters have been guessed so far and flag will indicate whether or not the player has guessed the word correctly.
  22. We then start looping through our list of words and randomly choosing a secret word from it.

Try it yourself Exercises: 

  • You can further enhance program by adding timer after every Guess
  • You can also give hints from the beginning to make the task a bit easier for user
  • You can also decrease the chance by one only if the player's guess is WRONG. If the guess is right, 
    player's chance is not reduced.


Hangman Game in Python

O

Omkar Pathak
Improve
Article Tags :
Practice Tags :

Similar Reads

We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood ourCookie Policy &Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences

[8]ページ先頭

©2009-2025 Movatter.jp