Enrollments closing soon for Post Graduate Certificate Program in Applied Data Science & AI By IIT Roorkee | 3 Seats Left

03 D 06 H : 26 M : 14 S   Apply Now

Foundations of Python

62 / 134

Random Number Generation

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.

INSTRUCTIONS
  • Import random module
  • Generate a random number and store it in the variable random_number
  • Convert the random_number into int using the type conversion and store it in random_int


Note - Having trouble with the assessment engine? Follow the steps listed here

Please login to comment

0 Comments

There are 52 new comments.