Course Content
Crafting a Classic Hangman Game
Crafting a Classic Hangman Game
Hints 2/2
Revealing the Hint
The second phase of the hint mechanism is called show_possible_matches
. This function displays the word from the file (word_from_list
) if it corresponds to the current configuration of the gameword
.
Task
- Define the
show_possible_matches
function withword_to_match
as a parameter. - Initialize a
for
loop to iterate through the elements intest_word_list
. - Append an element to the
possible_matches
list ifhints_match
returnsTrue
. - Check if the
possible_matches
list is empty and set a corresponding condition.
Thanks for your feedback!
Revealing the Hint
The second phase of the hint mechanism is called show_possible_matches
. This function displays the word from the file (word_from_list
) if it corresponds to the current configuration of the gameword
.
Task
- Define the
show_possible_matches
function withword_to_match
as a parameter. - Initialize a
for
loop to iterate through the elements intest_word_list
. - Append an element to the
possible_matches
list ifhints_match
returnsTrue
. - Check if the
possible_matches
list is empty and set a corresponding condition.