Available Letters
To help user we show available letters after every guess. The letter has to be deleted from the available_list if it has been used already. To do that, we create the get_available_letters function.
Swipe to start coding
- Set the
get_available_lettersfunction usingletters_already_guessedas an argument. - Set the variable-alphabet
available_listusingstring.ascii_lowercaseto get an alphabet. - Set
forloop to work with elements of theavailable_listin the reverse order. - Set condition if a letter from the
available_listare equal to theletters_already_guessed. - Delete an element from the
available_listif it was guessed. - Test the function using the
test_letters_already_guessedlist.
Solution
Merci pour vos commentaires !
single
Demandez à l'IA
Demandez à l'IA
Posez n'importe quelle question ou essayez l'une des questions suggérées pour commencer notre discussion
Résumer ce chapitre
Expliquer le code dans file
Expliquer pourquoi file ne résout pas la tâche
Awesome!
Completion rate improved to 7.69
Available Letters
Glissez pour afficher le menu
To help user we show available letters after every guess. The letter has to be deleted from the available_list if it has been used already. To do that, we create the get_available_letters function.
Swipe to start coding
- Set the
get_available_lettersfunction usingletters_already_guessedas an argument. - Set the variable-alphabet
available_listusingstring.ascii_lowercaseto get an alphabet. - Set
forloop to work with elements of theavailable_listin the reverse order. - Set condition if a letter from the
available_listare equal to theletters_already_guessed. - Delete an element from the
available_listif it was guessed. - Test the function using the
test_letters_already_guessedlist.
Solution
Merci pour vos commentaires !
single