Answers for "numpy.random.randint"

2

generate random integer matrix python

import numpy as np

randi_arr = np.random.randint(start, end, dimensions)
#random integers will be sampled from [start, end) (end not inclusive)
#end is optional; if end is not specified, random integers will be sampled from [0, start) (start not inclusive)
#dimensions can be specified as shown here; (m,n) #2D array with size 'm x n'
Posted by: Guest on September-01-2020
7

python randint

from random import randint

print(randint(3, 9))
Posted by: Guest on January-16-2020
2

python randint

from random import randint
print(randint(1,2))
Posted by: Guest on October-03-2020
0

random.randint(0,20) + pyrthon

random.randint(0,20)
Posted by: Guest on January-17-2021

Python Answers by Framework

Browse Popular Code Answers by Language