Random : Random Seed Getstate Setstate Getrandbits
Random : Random Seed Getstate Setstate Getrandbits
For integers, there is uniform selection from a range. For sequences, there is uniform
selection of a random element, a function to generate a random permutation of a list in-
place, and a function for random sampling without replacement.
On the real line, there are functions to compute uniform, normal (Gaussian), lognormal,
negative exponential, gamma, and beta distributions. For generating distributions of
angles, the von Mises distribution is available.
Almost all module functions depend on the basic function random(), which generates a
random float uniformly in the semi-open range [0.0, 1.0). Python uses the Mersenne
Twister as the core generator. It produces 53-bit precision floats and has a period of
2**19937-1. The underlying implementation in C is both fast and threadsafe. The
Mersenne Twister is one of the most extensively tested random number generators in
existence. However, being completely deterministic, it is not suitable for all purposes,
and is completely unsuitable for cryptographic purposes.
The functions supplied by this module are actually bound methods of a hidden instance
of the random.Randomclass. You can instantiate your own instances of Random to get
generators that don’t share state.
Warning
The pseudo-random generators of this module should not be used for security
purposes. For security or cryptographic uses, see the secrets module.
See also
M. Matsumoto and T. Nishimura, “Mersenne Twister: A 623-dimensionally
equidistributed uniform pseudorandom number generator”, ACM Transactions on
Modeling and Computer Simulation Vol. 8, No. 1, January pp.3–30 1998.
Bookkeeping functions
random.seed(a=None, version=2)
If a is omitted or None, the current system time is used. If randomness sources
are provided by the operating system, they are used instead of the system time
(see the os.urandom() function for details on availability).
With version 1 (provided for reproducing random sequences from older versions
of Python), the algorithm for str and bytes generates a narrower range of seeds.
Changed in version 3.2: Moved to the version 2 scheme which uses all of the bits
in a string seed.
random.getstate()
Return an object capturing the current internal state of the generator. This object
can be passed to setstate() to restore the state.
random.setstate(state)
Generate n random bytes.
random.randrange(start, stop[, step])
random.randint(a, b)
random.getrandbits(k)
Returns a Python integer with k random bits. This method is supplied with the
MersenneTwister generator and some other generators may also provide it as an
optional part of the API. When available, getrandbits() enables randrange() to handle
arbitrarily large ranges.
random.choices(population, weights=None, *,
cum_weights=None, k=1)
Note that even for small len(x), the total number of permutations of x can quickly
grow larger than the period of most random number generators. This implies that
most permutations of a long sequence can never be generated. For example, a
sequence of length 2080 is the largest that can fit within the period of the
Mersenne Twister random number generator.
random.sample(population, k, *, count
s=None)
Return a k length list of unique elements chosen from the population sequence or
set. Used for random sampling without replacement.
Returns a new list containing elements from the population while leaving the
original population unchanged. The resulting list is in selection order so that all
sub-slices will also be valid random samples. This allows raffle winners (the
sample) to be partitioned into grand prize and second place winners (the
subslices).
Repeated elements can be specified one at a time or with the optional keyword-
only counts parameter. For example, sample(['red', 'blue'], counts=[4, 2], k=5) is
equivalent to sample(['red', 'red','red', 'red', 'blue', 'blue'], k=5).
To choose a sample from a range of integers, use a range() object as an
argument. This is especially fast and space efficient for sampling from a large
population: sample(range(10000000), k=60).
If the sample size is larger than the population size, a ValueError is raised.