🔥Limited Offer: Get 50% OFFon AI & Full Stack Courses🔥
Back to NumPy Notes
Topic #17

Random Intro


What is a Random Number?

Random number does NOT mean a different number every time. Random means something that can not be predicted logically.

Pseudo Random and True Random.

Computers work on programs, and programs are definitive set of instructions. So it means there must be some algorithm to generate a random number as well.

If there is a program to generate random number it can be predicted, thus it is not truly random.

Random numbers generated through a generation algorithm are called pseudo random.

Can we make truly random numbers?

Yes. In order to generate a truly random number on our computers we need to get the random data from some outside source. This outside source is generally our keystrokes, mouse movements, data on network etc.

We do not need truly random numbers, unless it is related to security (e.g. encryption keys) or the basis of application is the randomness (e.g. Digital roulette wheels).

In this tutorial we will be using pseudo random numbers.


Generate Random Number

NumPy offers the random module to work with random numbers.

Example

  from numpy import random

x = random.randint(100)

print(x)

Generate Random Float

The random module's rand() method returns a random float between 0 and 1.

Example

  from numpy import random

x = random.rand()

print(x)

Generate Random Array

In NumPy we work with arrays, and you can use the two methods from the above examples to make random arrays.

Integers

The randint() method takes a size parameter where you can specify the shape of an array.

Example

  from numpy import random

x=random.randint(100, size=(5))

  print(x)

Example

  from numpy import random

x = random.randint(100, size=(3, 5))

print(x)

Floats

The rand() method also allows you to specify the shape of the array.

Example

  from numpy import random

x = random.rand(5)

print(x)

Example

  from numpy import random

x = random.rand(3, 5)

print(x)

Generate Random Number From Array

The choice() method allows you to generate a random value based on an array of values.

The choice() method takes an array as a parameter and randomly returns one of the values.

Example

  from numpy import random

x = random.choice([3, 5, 7, 9])

print(x)

The choice() method also allows you to return an array of values.

Add a size parameter to specify the shape of the array.

Example

  from numpy import random

x = random.choice([3, 5, 7, 9], size=(3, 5))

print(x)

Want to go beyond the notes?

Join CodingNow 2.0's NumPy course — live mentorship, real projects, and 100% placement support.

Enroll Now — Free Demo Available

Random Intro – FAQs

Quick answers about learning Random Intro in NumPy.

This free note from CodingNow 2.0 explains Random Intro in NumPy — concept, syntax and worked code examples you can copy, run and revise before interviews.
Yes. Every NumPy topic on CodingNow 2.0, including Random Intro, is 100% free with no signup required.
With focused practice, most students grasp Random Intro in 1–3 days from these notes; pairing it with CodingNow 2.0's mentor-led course takes you to job-ready depth faster.
Use the code examples in this note, then ask doubts for free on the CodingNow 2.0 Community (/community) — expert instructors answer within 24 hours.
WhatsApp
Call NowEnroll Now