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!

link|improve this question

feedback

3 Answers

up vote 17 down vote accepted

Adam's answer is quite fast, but I found that random.getrandbits(1) to be quite a lot faster. If you really want a boolean instead of a long then

bool(random.getrandbits(1))

is still about twice as fast as random.choice([True, False])

If utmost speed isn't to priority then random.choice definitely reads better

$ python -m timeit -s "import random" "random.choice([True, False])"
1000000 loops, best of 3: 0.904 usec per loop
$ python -m timeit -s "import random" "random.choice((True, False))" 
1000000 loops, best of 3: 0.846 usec per loop
$ python -m timeit -s "import random" "random.getrandbits(1)"
1000000 loops, best of 3: 0.286 usec per loop
$ python -m timeit -s "import random" "bool(random.getrandbits(1))"
1000000 loops, best of 3: 0.441 usec per loop
$ python -m timeit -s "import random" "not random.getrandbits(1)"
1000000 loops, best of 3: 0.308 usec per loop
$ python -m timeit -s "from random import getrandbits" "not getrandbits(1)"
1000000 loops, best of 3: 0.262 usec per loop  # not takes about 20us of this
link|improve this answer
If we're all about performance, not not random.getrandbits(1)) is faster than bool ;) – MichaƂ Bentkowski Jul 26 '11 at 9:38
3  
@Michal, a single not works just as well in this case – gnibbler Jul 26 '11 at 10:33
Nice ! Thanks ! – Xavier V. Jul 26 '11 at 13:21
3  
You likely don't even need to cast to a boolean at all, since 0/1 have the proper truth values. – Adam Vandenberg Jul 26 '11 at 16:46
You could speed it up further by doing from random import getrandbits to avoid the attribute lookup. :-) – kindall Jul 26 '11 at 23:07
feedback
random.choice([True, False])

would also work.

link|improve this answer
That's an elegant one. Thanks. – Xavier V. Jul 26 '11 at 2:51
feedback

If you want to generate a number of random booleans you could use numpy's random module. From the documentation

np.random.randint(2, size=10)

will return 10 random uniform integers in the open interval [0,2). The size keyword specifies the number of values to generate.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.