πŸ“Œ Step 8: Define play_more function

This function runs one round of the game.

  1. This function takes two arguments read and rounds
  2. The function should call the appropriate function to create a list of valid words
  3. Call the appropriate function to choose one word from the list
  4. Print the round number as Round: X and a blank line after
  5. Call the appropriate function simulating a round
  6. Return a tuple where:
    • first argument is the result returned by a round simulation
    • second arguments is the chosen word
πŸ’‘ Hint

  • Look back on previous functions and understand what they do.
  • You can print the round number using an f-string.
βœ… Checker

Define play_more function

Type or paste your code and run.