MP2 exercise
MP2 exercise
Answer the questions or complete the tasks outlined in bold below, use the specific method
described if applicable.
1. Import NumPy as np
#Write your code here
import numpy as np
10. Use NumPy to generate an array of 50 random numbers sampled from a standard normal
distribution
#write your code here
random_array = np.random.randn(50)
print (random_array)