Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.
Instruction
The Random Library
For the number guessing game project, you'll need to create a random number. Each time the game is played, a new random number should be chosen for the player to guess. Luckily, Python has a built-in library to help with that called random.
Let's play around with random a bit to see how it works.
[[LAUNCH_WORKSPACE]]
In order to access Python's random library, you'll need to import it.
imp...