Course Content
Crafting a Classic Hangman Game
Crafting a Classic Hangman Game
Swipe to show menu
Hints 1/2
Guessing the word from a large file can be challenging, so we provide users with the option to use a hint.
Adding Hint Functionality
To integrate hint functionality into our program, we'll proceed in two phases. The hints_match
function determines whether the current state of the gameword
—which includes correctly guessed letters and placeholders—corresponds exactly to any word in the file. The function will return True
if there's a match and False
otherwise.
Task
Swipe to begin your solution
- Define the
hints_match
function withword_to_match
andword_from_list
as parameters. - Remove spaces from
word_to_match
. - Compare the lengths of
test_list
andother_list
. - Return
False
if the lengths differ. - Initialize a
for
loop to iterate throughtest_list
. - Increment the
counter
.
Solution
Mark tasks as Completed
Switch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?
Thanks for your feedback!
Section 1. Chapter 6
AVAILABLE TO ULTIMATE ONLY