Return the next random floating point number in the range [0.0, 1.0).
Return a random integer N such that a <= N <= b.
Return a randomly selected element from range(start, stop, step). This is equivalent to choice(range(start, stop, step)), but doesn’t actually build a range object.