Login using Social Account
     Continue with GoogleLogin using your credentials
The random
module provides functions that generate pseudorandom numbers.
import random
random.random()
It returns a random float value between 0.0 and 1.0 (including 0.0 but not 1.0).
Each time you call random
, you get the next number in a long series. To see a sample, run this loop and observe the results:
for a in range(10):
number = random.random()
print(number)
This loop runs from 10 times and prints a random in every iteration.
random
modulerandom_number
random_number
into int
using the type conversion and store it in random_int
Taking you to the next exercise in seconds...
Want to create exercises like this yourself? Click here.
Loading comments...