Random() -> create a random number generator with its own internal state.
There are no implemented interfaces.
There are no attributes in this class.
getrandbits(...)
getrandbits(k) -> x. Generates a long int with k random bits.
getstate(...)
getstate() -> tuple containing the current state.
jumpahead(...)
jumpahead(int) -> None. Create new state from existing state and integer.
random(...)
random() -> x in the interval [0, 1).
seed(...)
seed([n]) -> None. Defaults to current time.
setstate(...)
setstate(state) -> None. Restores generator state.