π Step 8: Define play_more function
This function runs one round of the game.
- This function takes two arguments
readandrounds - The function should call the appropriate function to create a list of valid words
- Call the appropriate function to choose one word from the list
- Print the round number as
Round: Xand a blank line after - Call the appropriate function simulating a round
- 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.