Home » Python Generate Random Number

Python Generate Random Number

by Online Tutorials Library

Python Program to Generate a Random Number

In Python programming, you can generate a random integer, doubles, longs etc . in various ranges by importing a “random” class.

In Python, we can generate a random integer, doubles, long, etc in various ranges by importing a “random” module. In the following example, we will learn how to generate random numbers using the random module.

Syntax:

First, we have to import the random module and then apply the syntax:

Generating a Random Number

The random module provides a random() method which generates a float number between 0 and 1. Let’s see the following example.

Example –

Output:

0.7632870997556201  

If we run the code again, we will get the different output as follows.

0.8053503984689108  

Generating a Number within a Given Range

Python random module provides the randint() method that generates an integer number within a specific range. We can pass the two numbers as arguments that defines the range. Let’s understand the following example.

Example – 1:

Output:

40  

Example – 2:

Output:

143  

Using for loop

The randint() method can be used with for loop to generated a list of random numbers. To do so, we need to create an empty list, and then append the random numbers generated to the empty list one by one. Let’s understand the following example.

Example –

Output:

[10, 49, 16, 31, 45, 21, 19, 32, 30, 16]  

Using random.sample()

The random module also provides the sample() method, which directly generates a list of random numbers. Below is the example of generating random numbers using the sample() method.

Example –

Output:

[18, 25, 26, 29, 14, 31]  

In the above code, we have used the range() function, which generates the numbers between the given range.


You may also like