From 4328178e6d728cc864fd1efc0dc0e9ba69d0cd15 Mon Sep 17 00:00:00 2001 From: Milan Date: Thu, 10 Oct 2024 09:40:50 +0200 Subject: [PATCH] Fixed a typo in build a word guessing game with python project text. --- .../build-a-word-guessing-game-with-python.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/build-a-word-guessing-game-with-python/build-a-word-guessing-game-with-python.mdx b/projects/build-a-word-guessing-game-with-python/build-a-word-guessing-game-with-python.mdx index 7fa12d44..a2faca52 100644 --- a/projects/build-a-word-guessing-game-with-python/build-a-word-guessing-game-with-python.mdx +++ b/projects/build-a-word-guessing-game-with-python/build-a-word-guessing-game-with-python.mdx @@ -74,7 +74,7 @@ Now, we will randomly choose one of these words to be the correct answer. 🎲 word = random.choice(word_bank) ``` -The `random.choice()` method is used to randomly selects a word from the `word_bank` list and assigns it to the `word` variable. All possible options having an equal probability of being chosen. +The `random.choice()` method is used to randomly select a word from the `word_bank` list and to assign it to the `word` variable. All possible options have an equal probability of being chosen. ## Finishing the Setup