I am looking for the best way (fast and elegant) to get a random boolean in python (flip a coin).
For the moment I am using random.randint(0, 1) or random.getrandbits(1).
Are there better choices that I am not aware of?
Thanks!
|
feedback
|
|
Adam's answer is quite fast, but I found that
is still about twice as fast as If utmost speed isn't to priority then
| |||||||||||||||
feedback
|
would also work. | |||
|
feedback
|
|
If you want to generate a number of random booleans you could use numpy's random module. From the documentation
will return 10 random uniform integers in the open interval [0,2). The | |||
|
feedback
|