random boolean choice in python code example
Example 1: python random true false
bool(random.getrandbits(1)) #is still about twice as fast as random.choice([True, False])
Example 2: python random bool
if int(r.headers['content-length']) < TOO_LONG:
content = r.content
...