Skip to content
Advertisement

How do you produce a random 0 or 1 with random.rand

I’m trying to produce a 0 or 1 with numpy’s random.rand.

np.random.rand() produces a random float between 0 and 1 but not just a 0 or a 1.

Thank you.

Advertisement

Answer

You can use np.random.choice with a list of [0,1], or use np.random.radint with a range of 0,2

JavaScript

You can also use the random module for the equivalent of these functions

Advertisement