Random Word Generator
How to choose the word for the game?
To play the game, it is necessary to choose one game word randomly from the word_list
. To do that, we create the choose_word_random
function.
Oppgave
Swipe to start coding
- Define the function
choose_word_random
withword_list
as a parameter. - Inside the function, return a randomly selected word from
word_list
using therandom.choice(...)
method.
Løsning
Mark tasks as Completed
Alt var klart?
Takk for tilbakemeldingene dine!
Seksjon 1. Kapittel 2
Spør AI
Spør AI
Spør om hva du vil, eller prøv ett av de foreslåtte spørsmålene for å starte chatten vår
Awesome!
Completion rate improved to 11.11
Random Word Generator
How to choose the word for the game?
To play the game, it is necessary to choose one game word randomly from the word_list
. To do that, we create the choose_word_random
function.
Oppgave
Swipe to start coding
- Define the function
choose_word_random
withword_list
as a parameter. - Inside the function, return a randomly selected word from
word_list
using therandom.choice(...)
method.
Løsning
Mark tasks as Completed
Alt var klart?
Takk for tilbakemeldingene dine!
Seksjon 1. Kapittel 2