Create an rng object with np.random.default_rng(), you can seed it for reproducible results. You can draw samples from probability distributions, including from the binomial and normal distributions.
Generating a random number might seem like an easy task, but it can be surprisingly difficult — especially if the probability distribution from which the number is drawn is complex. This is often the ...