Is the Word Guessed?
The program needs to know when to stop asking the user for letters if the word is guessed. To do that we implement the is_word_guessed
function, which will say 'Ok, the user has guessed the gameword
. We may stop the program and congratulate the player!'
Taak
Swipe to start coding
- Set the
is_word_guessed
function using thegameword
and theletters_already_guessed
as arguments. - Set condition to check if the
letters_already_guessed
is equal to thegameword
. ! - Return
True
if the condition is satisfied andFalse
otherwise. - Test the function using the
test_gameword
andtest_letters_already_guessed
lists. !Pay attention!
while implementing2. ...
task we need to useset(gameword) & set(letters_already_guessed)
structure to equal it to thegameword
. We do that because we need only letters fromletters_already_guessed
that are in thegameword.
&
- returns letters that are present in both words.
Oplossing
Was alles duidelijk?
Bedankt voor je feedback!
Sectie 1. Hoofdstuk 3
single
Vraag AI
Vraag AI
Vraag wat u wilt of probeer een van de voorgestelde vragen om onze chat te starten.
Awesome!
Completion rate improved to 7.69
Is the Word Guessed?
Veeg om het menu te tonen
The program needs to know when to stop asking the user for letters if the word is guessed. To do that we implement the is_word_guessed
function, which will say 'Ok, the user has guessed the gameword
. We may stop the program and congratulate the player!'
Taak
Swipe to start coding
- Set the
is_word_guessed
function using thegameword
and theletters_already_guessed
as arguments. - Set condition to check if the
letters_already_guessed
is equal to thegameword
. ! - Return
True
if the condition is satisfied andFalse
otherwise. - Test the function using the
test_gameword
andtest_letters_already_guessed
lists. !Pay attention!
while implementing2. ...
task we need to useset(gameword) & set(letters_already_guessed)
structure to equal it to thegameword
. We do that because we need only letters fromletters_already_guessed
that are in thegameword.
&
- returns letters that are present in both words.
Oplossing
Was alles duidelijk?
Bedankt voor je feedback!
Awesome!
Completion rate improved to 7.69Sectie 1. Hoofdstuk 3
single