Write a NumPy program to generate six random integers between 10 and 30.
import numpy as np x = np.random.randint(low=10, high=30, size=6) print(x)
Sample Output:
[14 25 20 12 27 22]
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Sample Output:
need an explanation for this answer? contact us directly to get an explanation for this answer