The traditional way to play hangman is to draw a figure on


Write a program to support the children's spelling game hangman. Call the program hangman.py. Since there are many versions of hangman, be sure that you implement exactly the following.

The player is to guess the letters in a secret word. Use underscores to display the number of letters in the word. When the player guesses a correct letter, display the word with that letter showing. Correct guesses don't count against the player. Incorrect guesses count, and the player loses on the seventh incorrect guess. Each time the player is asked to enter a letter, the program should display how many guesses they have left and a list of all of the incorrect letters they have guessed. If the player accidentally chooses a letter that has already been guessed, this should not count as a guess. See sample games below.

Your program must contain at least the following functions. (If you want you may use other functions as well.)
· A function that gets a list of words from a file. Call the file wordlist.txt. You must provide your own when you test your program.
· A function that randomly picks a secret word from the list.
· A function that plays the game (i.e., other than main()).
· A function that displays the blanked-out secret word.
· A function that determines whether the letters that have been entered spell the secret word (this returns a boolean).
Part II: User Interface
Once you get your functions working with text, you can add a graphical user interface of your design. The GUI should have the following elements:
· A text area where the word with underscores representing the letters of the word is presented.
· A text area where the letters used are displayed. Optionally you can display the letters not chosen yet. In either case you must identify which role the letters displayed serve.
· A text area indicating the number of guesses the user has remaining.
· An area where the user enters the letter s/he wishes to play.
· When a game completes, a message should appear in the GUI window asking the player whether they want to play another game. The GUI should also provide Yes and No buttons for the player to make a choice.
Once your basic program is working:
The traditional way to play hangman is to draw a figure on a gallows. Another part of the hanged man is added for each incorrect guess. When the figure is complete, the player loses. How you draw the figure is up to you, but it should have exactly seven parts.

Request for Solution File

Ask an Expert for Answer!!
Basic Computer Science: The traditional way to play hangman is to draw a figure on
Reference No:- TGS0645180

Expected delivery within 24 Hours