I am trying to make a hangman game. So far, I have a list of words for the program to randomly choose from:
a = random.choice(hangman_words))
Then I have the program display the number of characters in the word using the len
function. That all works like it should. The problem I'm having is after prompting the user for a letter, I need the program to tell the user if the letter is correct or not and I don't know how to do that.
Thanks