Write a NumPy program to generate five random numbers from the normal distribution
- برمجة بايثون
- 2021-09-13
- mhanasmh00489829403
الأجوبة
import numpy as np
x = np.random.normal(size=5)
print(x)
Sample Output:
[-1.85145616 -0.4639516 0.49787567 1.23607083 -1.33332987]
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال