Hangman is a classic word game where a player guesses a word - letter by letter until they either guess the correct word or run out of tries!
This will be one of several parts in which you'll be implementing your version of this game in python with the aim of learning various fundamental programming concepts.
Create a folder named 'hangman'. In the folder, create a python file named 'hangman.py'.
In the python file, write a python script that randomly selects a word from a list of 5 words and prints out the word. The printed word must be converted to uppercase.
Notes:
The list is contains string literals; one word each.
You can use a 'list' or a 'tuple' to implement the data structure that holds the words. In your PR description, state which one you used and why
If a word selected is 'Chicken', it should be printed out as 'CHICKEN'
Hangman is a classic word game where a player guesses a word - letter by letter until they either guess the correct word or run out of tries!
This will be one of several parts in which you'll be implementing your version of this game in python with the aim of learning various fundamental programming concepts.
Create a folder named 'hangman'. In the folder, create a python file named 'hangman.py'. In the python file, write a python script that randomly selects a word from a list of 5 words and prints out the word. The printed word must be converted to uppercase.
Notes: