Guess a letter: w wallaby You win! # The program selects the word platypus Guess a letter: b ________ O Guess a letter: c ________ O | Guess a letter: d ________ O \| | Guess a letter: e ________ O \|/ | Guess a letter: f ________ O \|/ | / Guess a letter: g ________ O \|/ | / \ You lose. The word was platypus

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter6: Modularity Using Functions
Section6.4: A Case Study: Rectangular To Polar Coordinate Conversion
Problem 9E: (Numerical) Write a program that tests the effectiveness of the rand() library function. Start by...
icon
Related questions
Question

Code in Python:

Your hangman game should be broken into appropriate functions, contain a main function, and
do the following:
1. The program should randomly select a word from the list: kangaroo, capybara, wombat,
koala, wallaby, quokka, platypus, dingo, kookaburra
2. Repeatedly prompt the user to guess a letter.
3. Validate the input
4. All guessed letters should be stored in a two-dimensional list (from problem 2). If the
number of times a letter has been guessed is greater than 1, then the user should be
notified that they have already guessed this letter and prompted to guess a different
letter. The hangman won’t update (grow) if the same incorrect letter is guessed multiple
times.
5. The word should be printed where all correctly guessed letters are revealed, and all
unguessed letters are replaced with underscores
6. A hangman reflecting the number of incorrect guesses should be printed
7. If all the letters in the word are guessed, then the user wins. If the hangman / number of
incorrect guesses reaches 6, then the user loses 

Example:
# The program selects the word wallaby
Guess a letter: a
_a__a__
Guess a letter: a
You have already guessed this letter
Guess a letter: b
_a__ab_
Guess a letter: c
_a__ab_
O
Guess a letter: c
You have already guessed this letter
Guess a letter: y
_a__aby
O
Guess a letter: e
_a__aby
O
|
Guess a letter: l
_allaby
O
|
Page 5 of 6
Guess a letter: w
wallaby
You win!
# The program selects the word platypus
Guess a letter: b
________
O
Guess a letter: c
________
O
|
Guess a letter: d
________
O
\|
|
Guess a letter: e
________
O
\|/
|
Guess a letter: f
________
O
\|/
|
/
Guess a letter: g
________
O
\|/
|
/ \
You lose. The word was platypus

Already done before hope this will help :

import random
x=['kangaroo','capybara','wombat','koala','wallaby','quokka','platypus','dingo','kookaburra']

choosed=random.choice(x)
s=""
def word_selection():
 global s
 for i in range(len(choosed)):
    s=s+"_"
 while(True):
    choi=input("Guess a letter: ")
    choi=choi.lower()
    if(choi=="quit"):
        break
    else:
        if(choosed.find(choi)==-1):
            print("there is no \'",choi,"\'")
        else:
            for i in range(len(choosed)):
                if(choosed[i]==choi):
                    s=s[:i]+choi+s[i+1:]
            print(s)
            if(s==choosed):
                print("You win! Great!")
                break
def main():
    word_selection()
if __name__ == '__main__':
         main()
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Running Time of Application
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning