This is the mean of some random numbers using numpy.
import numpy as np
mean = np.mean(np.random.normal(size=100))
print(f"{mean=}")
This is the mean of some random numbers using numpy.
import numpy as np
mean = np.mean(np.random.normal(size=100))
print(f"{mean=}")