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, the game is called “Gallows”, “The Game of Hangin”, or “Hanger”.
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.
Run the program on your terminal.
Use the latest version of python. Python v3.8 and above To Check your python version:
run > ''python --version'' in your command line either (Windows), shell (Mac), or terminal (Linux/Ubuntu).
To check your Python version in your script, run > ''import sys'' to get the module
and use > ''sys.version'' to find detailed version information in your code.
>>> import sys
>>> sys.version
3.9.10 (v3.9.10:d047928ae3f6, Febuary 22 2022, 00:06:53)
import random
from collections import Counter
someWords = """apple banana mango strawberry orange grape pineapple apricot lemon coconut watermelon pearnectarine blueberry pomegranate starfruit plum raspberry mandarin jackfruit kiwi lime apricot avocado peach cherry 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")
# For printing the empty spaces for letters of the word
print('_', end = ' ')
print()
playing = True
In this way, all letters of the word are to be guessed before all the chances are over.
# list for storing the letters guessed by the player
letterGuessed = ''
chances = len(word) + 2
correct = 0
flag = 0
try:
while (chances != 0) and flag == 0: #flag is updated when the word is correctly guessed
print()
chances -= 1
We create a decision-making process, to check that the user only enters alphabets and not numbers as a name.
try:
guess = str(input('Enter a letter to guess: '))
except:
print('Enter only a letter!')
continue
# Validation of the guess
if not guess.isalpha():
print('Enter only a LETTER')
continue
elif len(guess) > 1:
print('Enter only a SINGLE letter')
continue
elif guess in letterGuessed:
print('You have already guessed that letter')
continue
if guess in word:
k = word.count(guess) #k stores the number of times the guessed letter occurs in the word
for _ in range(k):
letterGuessed += guess # The guess letter is added as many times as it occurs
# Print the word
for char in word:
if char in letterGuessed and (Counter(letterGuessed) != Counter(word)):
print(char, end = ' ')
correct += 1
# If user has guessed all the letters
elif (Counter(letterGuessed) == Counter(word)): # Once the correct word is guessed fully,
# the game ends, even if chances remain
print("The word is: ", end=' ')
print(word)
flag = 1
print('Congratulations, You won!')
break # To break out of the for loop
break # To break out of the while loop
else:
print('_', end = ' ')
# If user has used all of his chances
if chances <= 0 and (Counter(letterGuessed) != Counter(word)):
print()
print('You lost! Try again..')
print('The word was {}'.format(word))
print()
# autor contact
print('Contact TYP for more programming code')
print('Search Google for :')
print ('The Young Programmer Nemonet')
except KeyboardInterrupt:
print()
print('Bye! Try again.')
exit()
Guess the word! HINT: word is a name of a fruit
_ _ _ _
Enter a letter to guess: m
_ _ m _
Enter a letter to guess: i
_ i m _
Enter a letter to guess: l
l i m _
Enter a letter to guess: e
l i m e
Congratulations, You won!