Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Crafting a Classic Hangman Game

Available LettersAvailable Letters

Displaying Available Letters

To assist users, we display the letters that are still available for guessing after each attempt. Any letter that has been guessed should be removed from the available_list. For this purpose, we will implement the get_available_letters function.

Task

  1. Define the get_available_letters function with letters_already_guessed as a parameter.
  2. Initialize the available_list variable with string.ascii_lowercase to obtain the alphabet.
  3. Create a for loop to iterate through the available_list in reverse order.
  4. Implement a condition to check if a letter in the available_list matches any in letters_already_guessed.
  5. Remove the letter from the available_list if it has already been guessed.

Mark tasks as Completed

Everything was clear?

Section 1. Chapter 5
AVAILABLE TO ULTIMATE ONLY
course content

Course Content

Crafting a Classic Hangman Game

Available LettersAvailable Letters

Displaying Available Letters

To assist users, we display the letters that are still available for guessing after each attempt. Any letter that has been guessed should be removed from the available_list. For this purpose, we will implement the get_available_letters function.

Task

  1. Define the get_available_letters function with letters_already_guessed as a parameter.
  2. Initialize the available_list variable with string.ascii_lowercase to obtain the alphabet.
  3. Create a for loop to iterate through the available_list in reverse order.
  4. Implement a condition to check if a letter in the available_list matches any in letters_already_guessed.
  5. Remove the letter from the available_list if it has already been guessed.

Mark tasks as Completed

Everything was clear?

Section 1. Chapter 5
AVAILABLE TO ULTIMATE ONLY
some-alt