diff --git a/07-hangman/hangman.py b/07-hangman/hangman.py new file mode 100644 index 0000000..b78e300 --- /dev/null +++ b/07-hangman/hangman.py @@ -0,0 +1,13 @@ +# Step 1 + +word_list = ["aardvark", "baboon", "camel"] + +#TODO-1 Randomly choose a word from the word_list and assign it to a variable +# called chosen_word + +#TODO-2 Ask the user to guess a letter and assign their answer to a variable +# called guess. Make guess lowercase + +#TODO-3 Check if the letter the user guessed (guess) is one of the letters in +# the chosen_word +