Skip to main content

6 Ways to Generate Random Number in Python

In this tutorial, you will see how we can generate random number in Python.

Random number means we can’t predict that which number will be returned or printed. Let’s see some different ways in python to generate random number.

Ways to Generate Random Number in Python

1. using random.randint()

from random import randint
print(randint(1,100))

We can not predict the output here. The output will be different every time we execute this program. But we can predict that it will be a number from 1 to 100.

Let’s say we want a random number but it should be multiple of 5.

from random import randint
print(randint(1,20)*5)

It will print a random number from 0 to 100, but it will be a multiple of 5. In above program random.randint(1,20) will generate a number from 1 to 20, after that we’re multiplying that generated number with 5. So that the minimum number that can be printed is 1*5 = 5 and maximum can be 20*5 = 100. 

2. using random.randrange()

from random import randrange
print(randrange(1,10))

The output will be same as randint() method. But the only difference is randint(1,100) generates a number from 1 to 100 , but randrange(1, 100) will generate from 1 to 99. On other hand we can pass single argument in randrange() method where it is necessary to pass two arguments in randint() method.

from random import randrange
print(randrange(100))

It will print any number from 0 to 99.

3. using random.uniform()

from random import uniform
print(uniform(1,10))

Output will be a random floating point value between 1 and 10, i.e., 6.48754287679. So if you want a random number that should be a floating type value then uniform() method could be best choice.

But still you can get the integer number by parsing the generated value by uniform method into int as mentioned in program below.

from random import uniform
print(int(uniform(1,10)))

Output will be a random integer value.

4. using random.choice()

If we want to choose a random number from a set of given numbers like 23, 43, 34, 12, 35, 12 then choice() method will be the best option here.

from random import choice
numbers = [23,43,34,12,35,12]
print(choice(numbers))

Output will be a number from the given list of numbers.

5. using secrets.randbelow()

The secrets module is new in Python 3.6. This is better than the random module for cryptography or security issues. Below program randomly print an integer in the inclusive range 0 to 9 is given below.

from secrets import randbelow
print(randbelow(10))

6. using secrets.choice()

Like random.choice(), there is another method available in secrets module which can be used to get a random number from a given list.

from secrets import choice
numbers = [12,323,44,34,54]
print(choice(numbers))

Output will be any one number from given list numbers.

Comment below if you’ve any question related to python random number generator.

The post 6 Ways to Generate Random Number in Python appeared first on The Crazy Programmer.



from The Crazy Programmer https://www.thecrazyprogrammer.com/2018/04/generate-random-number-in-python.html

Comments

Popular posts from this blog

Rail Fence Cipher Program in C and C++[Encryption & Decryption]

Here you will get rail fence cipher program in C and C++ for encryption and decryption. It is a kind of transposition cipher which is also known as zigzag cipher. Below is an example. Here Key = 3. For encryption we write the message diagonally in zigzag form in a matrix having total rows = key and total columns = message length. Then read the matrix row wise horizontally to get encrypted message. Rail Fence Cipher Program in C #include<stdio.h> #include<string.h> void encryptMsg(char msg[], int key){ int msgLen = strlen(msg), i, j, k = -1, row = 0, col = 0; char railMatrix[key][msgLen]; for(i = 0; i < key; ++i) for(j = 0; j < msgLen; ++j) railMatrix[i][j] = '\n'; for(i = 0; i < msgLen; ++i){ railMatrix[row][col++] = msg[i]; if(row == 0 || row == key-1) k= k * (-1); row = row + k; } printf("\nEncrypted Message: "); for(i = 0; i < key; ++i) f...

Data Encryption Standard (DES) Algorithm

Data Encryption Standard is a symmetric-key algorithm for the encrypting the data. It comes under block cipher algorithm which follows Feistel structure. Here is the block diagram of Data Encryption Standard. Fig1: DES Algorithm Block Diagram [Image Source: Cryptography and Network Security Principles and Practices 4 th Ed by William Stallings] Explanation for above diagram: Each character of plain text converted into binary format. Every time we take 64 bits from that and give as input to DES algorithm, then it processed through 16 rounds and then converted to cipher text. Initial Permutation: 64 bit plain text goes under initial permutation and then given to round 1. Since initial permutation step receiving 64 bits, it contains an 1×64 matrix which contains numbers from 1 to 64 but in shuffled order. After that, we arrange our original 64 bit text in the order mentioned in that matrix. [You can see the matrix in below code] After initial permutation, 64 bit text passed throug...

Experimental: Reducing the size of .NET Core applications with Mono's Linker

The .NET team has built a linker to reduce the size of .NET Core applications. It is built on top of the excellent and battle-tested mono linker . The Xamarin tools also use this linker so it makes sense to try it out and perhaps use it everywhere! "In trivial cases, the linker can reduce the size of applications by 50%. The size wins may be more favorable or more moderate for larger applications. The linker removes code in your application and dependent libraries that are not reached by any code paths. It is effectively an application-specific dead code analysis ." - Using the .NET IL Linker I recently updated a 15 year old .NET 1.1 application to cross-platform .NET Core 2.0 so I thought I'd try this experimental linker on it and see the results. The linker is a tool one can use to only ship the minimal possible IL code and metadata that a set of programs might require to run as opposed to the full libraries. It is used by the various Xamarin products to extract...