How to generate random numbers with python

How to generate random numbers with python
Views: 24
0 0
Read Time:53 Second

In this article we are briefly going to show how to generate random numbers with python using the standard library.

For more information you can check this page https://docs.python.org/3/library/random.html#random, and the ending point will be something like the code below

from random import seed
from random import random

seed(1)

counter = 0
while counter < 10:
    print(random())
    counter += 1

and this is the output

0.13436424411240122
0.8474337369372327
0.763774618976614
0.2550690257394217
0.49543508709194095
0.4494910647887381
0.651592972722763
0.7887233511355132
0.0938595867742349
0.02834747652200631

Generate Random Integers

For generating random integers we need to import the randint function that takes 2 arguments (min, max) and will generate a random number between min and max (included)

from random import seed, randint
seed(1)
print(randint(0,10))

Generate Random Floats

For generating random float numbers we can just use random() that will generate a random number between 0 and 1

from random import seed, random

seed(3)
print(random())

Hope this will help

Happy
Happy
0 %
Sad
Sad
0 %
Excited
Excited
0 %
Sleepy
Sleepy
0 %
Angry
Angry
0 %
Surprise
Surprise
0 %
Convert poetry.lock file into a requirements.txt Previous post Convert poetry.lock file into a requirements.txt and download the packages
Mouse mover in python Next post Mouse mover in python
0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x