ebosetalee / 20-days-challenge

#20dayschallenge on python
6 stars 0 forks source link

4a - Hangman-01 #11

Closed yudori closed 4 years ago

yudori commented 4 years ago

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: