Conteúdo do Curso
Beginner Final Project: Hangman
Beginner Final Project: Hangman
Random Word
To play the game it is needed to choose one gameword
randomly from the word_list
. To do that we create choose_word_random
function.
Tarefa
Swipe to start coding
- Set the
choose_word_random
function using theword_list
as an argument. - Return random word from the
word_list
inside the function usingrandom.choice(...)
function. - Test the function using the
test_word_list
list.
Solução
Tudo estava claro?
Obrigado pelo seu feedback!
Seção 1. Capítulo 2
Random Word
To play the game it is needed to choose one gameword
randomly from the word_list
. To do that we create choose_word_random
function.
Tarefa
Swipe to start coding
- Set the
choose_word_random
function using theword_list
as an argument. - Return random word from the
word_list
inside the function usingrandom.choice(...)
function. - Test the function using the
test_word_list
list.
Solução
Tudo estava claro?
Obrigado pelo seu feedback!
Seção 1. Capítulo 2