take random interger value pyhton in range code example
Example 1: How to get random int between two numbers python
import random
print(random.randint(10,100))
this will output somthing between 10 and 100
Example 2: python make a random number
from random import seed
from random import randint
seed(1)
for _ in range(10):
value = randint(0, 10)
print(value)
Example 3: random numbers python
import numpy
x = numpy.random.randint(100)
x = numpy.random.randint(100, size=5)
x = numpy.random.rand()
x = numpy.random.rand(5)
x = numpy.random.rand(2,3)
x = numpy.random.choice([1,5,2,3,4])
x = numpy.random.choice([1,5,2,3,4], size=(2,3))
import random
x = random.getrandbits(1)