Computer Science, asked by Anonymous, 11 months ago


For python programmer:

Q). write a numpy program to generate six random integer number between 25 to 55.

Answers

Answered by Anonymous
3

Sample Solution:

Python Code:

import numpy as np

x = np.random.randint(low=10, high=30, size=6)

print(x)

Copy

Sample Output:

[14 25 20 12 27 22]

FOLLOW ME

Answered by surajsingh100700
5

Answer:

import numpy as np

x = np.random.randint(low=25, high=55, size=6)

print(x)

Similar questions