python random number example
Example 1: random number python
from random import randint
value = randint(0, 10)
print(value)
Example 2: how to generate a random number python
import random
n = random.randint(0,22)
print(n)
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)