Question: What will the following code output? import numpy as np np . random.seed ( 0 ) arr = np . random.randint ( 1 , 1

What will the following code output?
import numpy as np
np.random.seed(0)
arr = np.random.randint(1,10, size=5)
print(arr)
3,1,4,1,5
1,2,3,4,5
A different random array each time
[2,8,4,6,9]
What will the following code output? import numpy

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!