Is there a standard function for Python which outputs True or False probabilistically based on the input of a random number from 0 to 1?
example of what I mean:
def decision(probability):
...code goes here...
return ...True or False...
the above example if given an input of, say, 0.7 will return True with a 70% probability and false with a 30% probability
random.random()
generates numbers uniformally in [0, 1). 0 inclusive and 1 exclusive – Lucubrate