STEP 3: Since we want to reveal the word one letter at a time, we will need a list of the letters in the word.

The list() command will copy the letters of our word "python" into a list.

If we displayed the values in the list they would look like this: ["p", "y", "t", "h", "o", "n"].

  • Go to and drag Copy List to the bottom of your program.
  • Change the our new list name to secret_letters. Change the variable in list() to word.


# THIS ACTIVITY IS IN PREVIEW ONLY MODE