blob: 270518c52bb0d943ea1d7f56827210c9fa12d38f [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001:mod:`random` --- Generate pseudo-random numbers
2================================================
3
4.. module:: random
5 :synopsis: Generate pseudo-random numbers with various common distributions.
6
7
8This module implements pseudo-random number generators for various
9distributions.
10
11For integers, uniform selection from a range. For sequences, uniform selection
12of a random element, a function to generate a random permutation of a list
13in-place, and a function for random sampling without replacement.
14
15On the real line, there are functions to compute uniform, normal (Gaussian),
16lognormal, negative exponential, gamma, and beta distributions. For generating
17distributions of angles, the von Mises distribution is available.
18
19Almost all module functions depend on the basic function :func:`random`, which
20generates a random float uniformly in the semi-open range [0.0, 1.0). Python
21uses the Mersenne Twister as the core generator. It produces 53-bit precision
22floats and has a period of 2\*\*19937-1. The underlying implementation in C is
23both fast and threadsafe. The Mersenne Twister is one of the most extensively
24tested random number generators in existence. However, being completely
25deterministic, it is not suitable for all purposes, and is completely unsuitable
26for cryptographic purposes.
27
28The functions supplied by this module are actually bound methods of a hidden
29instance of the :class:`random.Random` class. You can instantiate your own
Raymond Hettinger28de64f2008-01-13 23:40:30 +000030instances of :class:`Random` to get generators that don't share state.
Georg Brandl116aa622007-08-15 14:28:22 +000031
32Class :class:`Random` can also be subclassed if you want to use a different
33basic generator of your own devising: in that case, override the :meth:`random`,
Raymond Hettingerafd30452009-02-24 10:57:02 +000034:meth:`seed`, :meth:`getstate`, and :meth:`setstate` methods.
Benjamin Petersond18de0e2008-07-31 20:21:46 +000035Optionally, a new generator can supply a :meth:`getrandbits` method --- this
Georg Brandl116aa622007-08-15 14:28:22 +000036allows :meth:`randrange` to produce selections over an arbitrarily large range.
37
Benjamin Peterson21896a32010-03-21 22:03:03 +000038As an example of subclassing, the :mod:`random` module provides the
39:class:`WichmannHill` class that implements an alternative generator in pure
40Python. The class provides a backward compatible way to reproduce results from
41earlier versions of Python, which used the Wichmann-Hill algorithm as the core
42generator. Note that this Wichmann-Hill generator can no longer be recommended:
43its period is too short by contemporary standards, and the sequence generated is
44known to fail some stringent randomness tests. See the references below for a
45recent variant that repairs these flaws.
46
47The :mod:`random` module also provides the :class:`SystemRandom` class which
48uses the system function :func:`os.urandom` to generate random numbers
49from sources provided by the operating system.
Georg Brandl116aa622007-08-15 14:28:22 +000050
Georg Brandl116aa622007-08-15 14:28:22 +000051Bookkeeping functions:
52
53
Raymond Hettingerf763a722010-09-07 00:38:15 +000054.. function:: seed([x], version=2)
Georg Brandl116aa622007-08-15 14:28:22 +000055
Raymond Hettingerf763a722010-09-07 00:38:15 +000056 Initialize the random number generator.
Georg Brandl116aa622007-08-15 14:28:22 +000057
Raymond Hettingerf763a722010-09-07 00:38:15 +000058 If *x* is omitted or ``None``, the current system time is used. If
59 randomness sources are provided by the operating system, they are used
60 instead of the system time (see the :func:`os.urandom` function for details
61 on availability).
Georg Brandl116aa622007-08-15 14:28:22 +000062
Raymond Hettingerf763a722010-09-07 00:38:15 +000063 If *x* is an int, it is used directly.
64
65 With version 2 (the default), a :class:`str`, :class:`bytes`, or :class:`bytearray`
66 object gets converted to a :class:`int` and all of its bits are used. With version 1,
67 the :func:`hash` of *x* is used instead.
68
69 .. versionchanged:: 3.2
70 Moved to the version 2 scheme which uses all of the bits in a string seed.
Georg Brandl116aa622007-08-15 14:28:22 +000071
72.. function:: getstate()
73
74 Return an object capturing the current internal state of the generator. This
75 object can be passed to :func:`setstate` to restore the state.
76
Georg Brandl116aa622007-08-15 14:28:22 +000077
78.. function:: setstate(state)
79
80 *state* should have been obtained from a previous call to :func:`getstate`, and
81 :func:`setstate` restores the internal state of the generator to what it was at
82 the time :func:`setstate` was called.
83
Georg Brandl116aa622007-08-15 14:28:22 +000084
Georg Brandl116aa622007-08-15 14:28:22 +000085.. function:: getrandbits(k)
86
Ezio Melotti0639d5a2009-12-19 23:26:38 +000087 Returns a Python integer with *k* random bits. This method is supplied with
Georg Brandl5c106642007-11-29 17:41:05 +000088 the MersenneTwister generator and some other generators may also provide it
Georg Brandl116aa622007-08-15 14:28:22 +000089 as an optional part of the API. When available, :meth:`getrandbits` enables
90 :meth:`randrange` to handle arbitrarily large ranges.
91
Georg Brandl116aa622007-08-15 14:28:22 +000092
93Functions for integers:
94
Georg Brandl116aa622007-08-15 14:28:22 +000095.. function:: randrange([start,] stop[, step])
96
97 Return a randomly selected element from ``range(start, stop, step)``. This is
98 equivalent to ``choice(range(start, stop, step))``, but doesn't actually build a
99 range object.
100
Georg Brandl116aa622007-08-15 14:28:22 +0000101
102.. function:: randint(a, b)
103
Raymond Hettingerafd30452009-02-24 10:57:02 +0000104 Return a random integer *N* such that ``a <= N <= b``. Alias for
105 ``randrange(a, b+1)``.
Georg Brandl116aa622007-08-15 14:28:22 +0000106
Georg Brandl116aa622007-08-15 14:28:22 +0000107
Georg Brandl55ac8f02007-09-01 13:51:09 +0000108Functions for sequences:
Georg Brandl116aa622007-08-15 14:28:22 +0000109
110.. function:: choice(seq)
111
112 Return a random element from the non-empty sequence *seq*. If *seq* is empty,
113 raises :exc:`IndexError`.
114
115
116.. function:: shuffle(x[, random])
117
118 Shuffle the sequence *x* in place. The optional argument *random* is a
119 0-argument function returning a random float in [0.0, 1.0); by default, this is
120 the function :func:`random`.
121
122 Note that for even rather small ``len(x)``, the total number of permutations of
123 *x* is larger than the period of most random number generators; this implies
124 that most permutations of a long sequence can never be generated.
125
126
127.. function:: sample(population, k)
128
Raymond Hettinger1acde192008-01-14 01:00:53 +0000129 Return a *k* length list of unique elements chosen from the population sequence
130 or set. Used for random sampling without replacement.
Georg Brandl116aa622007-08-15 14:28:22 +0000131
Georg Brandl116aa622007-08-15 14:28:22 +0000132 Returns a new list containing elements from the population while leaving the
133 original population unchanged. The resulting list is in selection order so that
134 all sub-slices will also be valid random samples. This allows raffle winners
135 (the sample) to be partitioned into grand prize and second place winners (the
136 subslices).
137
Guido van Rossum2cc30da2007-11-02 23:46:40 +0000138 Members of the population need not be :term:`hashable` or unique. If the population
Georg Brandl116aa622007-08-15 14:28:22 +0000139 contains repeats, then each occurrence is a possible selection in the sample.
140
141 To choose a sample from a range of integers, use an :func:`range` object as an
142 argument. This is especially fast and space efficient for sampling from a large
143 population: ``sample(range(10000000), 60)``.
144
145The following functions generate specific real-valued distributions. Function
146parameters are named after the corresponding variables in the distribution's
147equation, as used in common mathematical practice; most of these equations can
148be found in any statistics text.
149
150
151.. function:: random()
152
153 Return the next random floating point number in the range [0.0, 1.0).
154
155
156.. function:: uniform(a, b)
157
Benjamin Petersonb58dda72009-01-18 22:27:04 +0000158 Return a random floating point number *N* such that ``a <= N <= b`` for
159 ``a <= b`` and ``b <= N <= a`` for ``b < a``.
Georg Brandl116aa622007-08-15 14:28:22 +0000160
Raymond Hettingerbe40db02009-06-11 23:12:14 +0000161 The end-point value ``b`` may or may not be included in the range
162 depending on floating-point rounding in the equation ``a + (b-a) * random()``.
Benjamin Peterson35e8c462008-04-24 02:34:53 +0000163
Christian Heimesfe337bf2008-03-23 21:54:12 +0000164.. function:: triangular(low, high, mode)
165
Benjamin Petersonb58dda72009-01-18 22:27:04 +0000166 Return a random floating point number *N* such that ``low <= N <= high`` and
Christian Heimescc47b052008-03-25 14:56:36 +0000167 with the specified *mode* between those bounds. The *low* and *high* bounds
168 default to zero and one. The *mode* argument defaults to the midpoint
169 between the bounds, giving a symmetric distribution.
Christian Heimesfe337bf2008-03-23 21:54:12 +0000170
Georg Brandl116aa622007-08-15 14:28:22 +0000171
172.. function:: betavariate(alpha, beta)
173
Benjamin Petersonb58dda72009-01-18 22:27:04 +0000174 Beta distribution. Conditions on the parameters are ``alpha > 0`` and
175 ``beta > 0``. Returned values range between 0 and 1.
Georg Brandl116aa622007-08-15 14:28:22 +0000176
177
178.. function:: expovariate(lambd)
179
Mark Dickinson2f947362009-01-07 17:54:07 +0000180 Exponential distribution. *lambd* is 1.0 divided by the desired
181 mean. It should be nonzero. (The parameter would be called
182 "lambda", but that is a reserved word in Python.) Returned values
183 range from 0 to positive infinity if *lambd* is positive, and from
184 negative infinity to 0 if *lambd* is negative.
Georg Brandl116aa622007-08-15 14:28:22 +0000185
186
187.. function:: gammavariate(alpha, beta)
188
Benjamin Petersonb58dda72009-01-18 22:27:04 +0000189 Gamma distribution. (*Not* the gamma function!) Conditions on the
190 parameters are ``alpha > 0`` and ``beta > 0``.
Georg Brandl116aa622007-08-15 14:28:22 +0000191
192
193.. function:: gauss(mu, sigma)
194
Benjamin Petersonb58dda72009-01-18 22:27:04 +0000195 Gaussian distribution. *mu* is the mean, and *sigma* is the standard
196 deviation. This is slightly faster than the :func:`normalvariate` function
197 defined below.
Georg Brandl116aa622007-08-15 14:28:22 +0000198
199
200.. function:: lognormvariate(mu, sigma)
201
202 Log normal distribution. If you take the natural logarithm of this
203 distribution, you'll get a normal distribution with mean *mu* and standard
204 deviation *sigma*. *mu* can have any value, and *sigma* must be greater than
205 zero.
206
207
208.. function:: normalvariate(mu, sigma)
209
210 Normal distribution. *mu* is the mean, and *sigma* is the standard deviation.
211
212
213.. function:: vonmisesvariate(mu, kappa)
214
215 *mu* is the mean angle, expressed in radians between 0 and 2\*\ *pi*, and *kappa*
216 is the concentration parameter, which must be greater than or equal to zero. If
217 *kappa* is equal to zero, this distribution reduces to a uniform random angle
218 over the range 0 to 2\*\ *pi*.
219
220
221.. function:: paretovariate(alpha)
222
223 Pareto distribution. *alpha* is the shape parameter.
224
225
226.. function:: weibullvariate(alpha, beta)
227
228 Weibull distribution. *alpha* is the scale parameter and *beta* is the shape
229 parameter.
230
231
232Alternative Generators:
233
Georg Brandl116aa622007-08-15 14:28:22 +0000234.. class:: SystemRandom([seed])
235
236 Class that uses the :func:`os.urandom` function for generating random numbers
237 from sources provided by the operating system. Not available on all systems.
238 Does not rely on software state and sequences are not reproducible. Accordingly,
Raymond Hettingerafd30452009-02-24 10:57:02 +0000239 the :meth:`seed` method has no effect and is ignored.
Georg Brandl116aa622007-08-15 14:28:22 +0000240 The :meth:`getstate` and :meth:`setstate` methods raise
241 :exc:`NotImplementedError` if called.
242
Georg Brandl116aa622007-08-15 14:28:22 +0000243
244Examples of basic usage::
245
246 >>> random.random() # Random float x, 0.0 <= x < 1.0
247 0.37444887175646646
248 >>> random.uniform(1, 10) # Random float x, 1.0 <= x < 10.0
249 1.1800146073117523
250 >>> random.randint(1, 10) # Integer from 1 to 10, endpoints included
251 7
252 >>> random.randrange(0, 101, 2) # Even integer from 0 to 100
253 26
254 >>> random.choice('abcdefghij') # Choose a random element
255 'c'
256
257 >>> items = [1, 2, 3, 4, 5, 6, 7]
258 >>> random.shuffle(items)
259 >>> items
260 [7, 3, 2, 5, 6, 4, 1]
261
262 >>> random.sample([1, 2, 3, 4, 5], 3) # Choose 3 elements
263 [4, 1, 5]
264
265
266
267.. seealso::
268
269 M. Matsumoto and T. Nishimura, "Mersenne Twister: A 623-dimensionally
270 equidistributed uniform pseudorandom number generator", ACM Transactions on
271 Modeling and Computer Simulation Vol. 8, No. 1, January pp.3-30 1998.
272
Georg Brandl116aa622007-08-15 14:28:22 +0000273
Raymond Hettinger1fd32a62009-04-01 20:52:13 +0000274 `Complementary-Multiply-with-Carry recipe
Raymond Hettinger9743fd02009-04-03 05:47:33 +0000275 <http://code.activestate.com/recipes/576707/>`_ for a compatible alternative
276 random number generator with a long period and comparatively simple update
Raymond Hettinger1fd32a62009-04-01 20:52:13 +0000277 operations.
Raymond Hettinger435cb0f2010-09-06 23:36:31 +0000278
279Notes on Reproducibility
280========================
281
282Sometimes it is useful to be able to reproduce the sequences given by a pseudo
283random number generator. By re-using a seed value, the same sequence should be
284reproducible from run to run as long as multiple threads are not running.
285
286Most of the random module's algorithms and seeding functions are subject to
287change across Python versions, but two aspects are guaranteed not to change:
288
289* If a new seeding method is added, then a backward compatible seeder will be
290 offered.
291
292* The generator's :meth:`random` method will continue to produce the same
293 sequence when the compatible seeder is given the same seed.