scipy generate uniform distribution code example
Example 1: python random from normal distribution
>>> mu, sigma = 0, 0.1 # mean and standard deviation
>>> s = np.random.normal(mu, sigma, 1000)
Example 2: np.random.uniform
numpy.random.uniform(low=0.0, high=1.0, size=None)