blob: 4306911dfc2b1a367a9809fbd415ad83fe5f3b40 [file] [log] [blame]
Georg Brandl8ec7f652007-08-15 14:28:01 +00001
2:mod:`random` --- Generate pseudo-random numbers
3================================================
4
5.. module:: random
6 :synopsis: Generate pseudo-random numbers with various common distributions.
7
8
9This module implements pseudo-random number generators for various
10distributions.
11
Raymond Hettingere679a372010-11-05 23:58:42 +000012.. seealso::
13
14 Latest version of the `random module Python source code
15 <http://svn.python.org/view/python/branches/release27-maint/Lib/random.py?view=markup>`_
16
Georg Brandl8ec7f652007-08-15 14:28:01 +000017For integers, uniform selection from a range. For sequences, uniform selection
18of a random element, a function to generate a random permutation of a list
19in-place, and a function for random sampling without replacement.
20
21On the real line, there are functions to compute uniform, normal (Gaussian),
22lognormal, negative exponential, gamma, and beta distributions. For generating
23distributions of angles, the von Mises distribution is available.
24
25Almost all module functions depend on the basic function :func:`random`, which
26generates a random float uniformly in the semi-open range [0.0, 1.0). Python
27uses the Mersenne Twister as the core generator. It produces 53-bit precision
28floats and has a period of 2\*\*19937-1. The underlying implementation in C is
29both fast and threadsafe. The Mersenne Twister is one of the most extensively
30tested random number generators in existence. However, being completely
31deterministic, it is not suitable for all purposes, and is completely unsuitable
32for cryptographic purposes.
33
34The functions supplied by this module are actually bound methods of a hidden
35instance of the :class:`random.Random` class. You can instantiate your own
36instances of :class:`Random` to get generators that don't share state. This is
37especially useful for multi-threaded programs, creating a different instance of
38:class:`Random` for each thread, and using the :meth:`jumpahead` method to make
39it likely that the generated sequences seen by each thread don't overlap.
40
41Class :class:`Random` can also be subclassed if you want to use a different
42basic generator of your own devising: in that case, override the :meth:`random`,
43:meth:`seed`, :meth:`getstate`, :meth:`setstate` and :meth:`jumpahead` methods.
Benjamin Petersonf2eb2b42008-07-30 13:46:53 +000044Optionally, a new generator can supply a :meth:`getrandbits` method --- this
Georg Brandl8ec7f652007-08-15 14:28:01 +000045allows :meth:`randrange` to produce selections over an arbitrarily large range.
46
47.. versionadded:: 2.4
Benjamin Petersonf2eb2b42008-07-30 13:46:53 +000048 the :meth:`getrandbits` method.
Georg Brandl8ec7f652007-08-15 14:28:01 +000049
50As an example of subclassing, the :mod:`random` module provides the
51:class:`WichmannHill` class that implements an alternative generator in pure
52Python. The class provides a backward compatible way to reproduce results from
53earlier versions of Python, which used the Wichmann-Hill algorithm as the core
54generator. Note that this Wichmann-Hill generator can no longer be recommended:
55its period is too short by contemporary standards, and the sequence generated is
56known to fail some stringent randomness tests. See the references below for a
57recent variant that repairs these flaws.
58
59.. versionchanged:: 2.3
Andrew M. Kuchling25d6ddd2010-02-22 02:29:10 +000060 MersenneTwister replaced Wichmann-Hill as the default generator.
61
62The :mod:`random` module also provides the :class:`SystemRandom` class which
63uses the system function :func:`os.urandom` to generate random numbers
64from sources provided by the operating system.
Georg Brandl8ec7f652007-08-15 14:28:01 +000065
66Bookkeeping functions:
67
68
69.. function:: seed([x])
70
71 Initialize the basic random number generator. Optional argument *x* can be any
Georg Brandl7c3e79f2007-11-02 20:06:17 +000072 :term:`hashable` object. If *x* is omitted or ``None``, current system time is used;
Georg Brandl8ec7f652007-08-15 14:28:01 +000073 current system time is also used to initialize the generator when the module is
74 first imported. If randomness sources are provided by the operating system,
75 they are used instead of the system time (see the :func:`os.urandom` function
76 for details on availability).
77
78 .. versionchanged:: 2.4
79 formerly, operating system resources were not used.
80
Georg Brandl8ec7f652007-08-15 14:28:01 +000081.. function:: getstate()
82
83 Return an object capturing the current internal state of the generator. This
84 object can be passed to :func:`setstate` to restore the state.
85
86 .. versionadded:: 2.1
87
Martin v. Löwis6b449f42007-12-03 19:20:02 +000088 .. versionchanged:: 2.6
89 State values produced in Python 2.6 cannot be loaded into earlier versions.
90
Georg Brandl8ec7f652007-08-15 14:28:01 +000091
92.. function:: setstate(state)
93
94 *state* should have been obtained from a previous call to :func:`getstate`, and
95 :func:`setstate` restores the internal state of the generator to what it was at
96 the time :func:`setstate` was called.
97
98 .. versionadded:: 2.1
99
100
101.. function:: jumpahead(n)
102
103 Change the internal state to one different from and likely far away from the
104 current state. *n* is a non-negative integer which is used to scramble the
105 current state vector. This is most useful in multi-threaded programs, in
Georg Brandl907a7202008-02-22 12:31:45 +0000106 conjunction with multiple instances of the :class:`Random` class:
Georg Brandl8ec7f652007-08-15 14:28:01 +0000107 :meth:`setstate` or :meth:`seed` can be used to force all instances into the
108 same internal state, and then :meth:`jumpahead` can be used to force the
109 instances' states far apart.
110
111 .. versionadded:: 2.1
112
113 .. versionchanged:: 2.3
114 Instead of jumping to a specific state, *n* steps ahead, ``jumpahead(n)``
115 jumps to another state likely to be separated by many steps.
116
117
118.. function:: getrandbits(k)
119
120 Returns a python :class:`long` int with *k* random bits. This method is supplied
121 with the MersenneTwister generator and some other generators may also provide it
122 as an optional part of the API. When available, :meth:`getrandbits` enables
123 :meth:`randrange` to handle arbitrarily large ranges.
124
125 .. versionadded:: 2.4
126
127Functions for integers:
128
129
130.. function:: randrange([start,] stop[, step])
131
132 Return a randomly selected element from ``range(start, stop, step)``. This is
133 equivalent to ``choice(range(start, stop, step))``, but doesn't actually build a
134 range object.
135
136 .. versionadded:: 1.5.2
137
138
139.. function:: randint(a, b)
140
141 Return a random integer *N* such that ``a <= N <= b``.
142
143Functions for sequences:
144
145
146.. function:: choice(seq)
147
148 Return a random element from the non-empty sequence *seq*. If *seq* is empty,
149 raises :exc:`IndexError`.
150
151
152.. function:: shuffle(x[, random])
153
154 Shuffle the sequence *x* in place. The optional argument *random* is a
155 0-argument function returning a random float in [0.0, 1.0); by default, this is
156 the function :func:`random`.
157
158 Note that for even rather small ``len(x)``, the total number of permutations of
159 *x* is larger than the period of most random number generators; this implies
160 that most permutations of a long sequence can never be generated.
161
162
163.. function:: sample(population, k)
164
165 Return a *k* length list of unique elements chosen from the population sequence.
166 Used for random sampling without replacement.
167
168 .. versionadded:: 2.3
169
170 Returns a new list containing elements from the population while leaving the
171 original population unchanged. The resulting list is in selection order so that
172 all sub-slices will also be valid random samples. This allows raffle winners
173 (the sample) to be partitioned into grand prize and second place winners (the
174 subslices).
175
Georg Brandl7c3e79f2007-11-02 20:06:17 +0000176 Members of the population need not be :term:`hashable` or unique. If the population
Georg Brandl8ec7f652007-08-15 14:28:01 +0000177 contains repeats, then each occurrence is a possible selection in the sample.
178
179 To choose a sample from a range of integers, use an :func:`xrange` object as an
180 argument. This is especially fast and space efficient for sampling from a large
181 population: ``sample(xrange(10000000), 60)``.
182
183The following functions generate specific real-valued distributions. Function
184parameters are named after the corresponding variables in the distribution's
185equation, as used in common mathematical practice; most of these equations can
186be found in any statistics text.
187
188
189.. function:: random()
190
191 Return the next random floating point number in the range [0.0, 1.0).
192
193
194.. function:: uniform(a, b)
195
Georg Brandl9f7fb842009-01-18 13:24:10 +0000196 Return a random floating point number *N* such that ``a <= N <= b`` for
197 ``a <= b`` and ``b <= N <= a`` for ``b < a``.
Georg Brandlafeea072008-09-21 08:03:21 +0000198
Raymond Hettinger2c0cdca2009-06-11 23:14:53 +0000199 The end-point value ``b`` may or may not be included in the range
200 depending on floating-point rounding in the equation ``a + (b-a) * random()``.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000201
Raymond Hettingerbbc50ea2008-03-23 13:32:32 +0000202.. function:: triangular(low, high, mode)
203
Georg Brandl9f7fb842009-01-18 13:24:10 +0000204 Return a random floating point number *N* such that ``low <= N <= high`` and
Raymond Hettingerd1452402008-03-24 06:07:49 +0000205 with the specified *mode* between those bounds. The *low* and *high* bounds
206 default to zero and one. The *mode* argument defaults to the midpoint
207 between the bounds, giving a symmetric distribution.
Raymond Hettingerc4f7bab2008-03-23 19:37:53 +0000208
Raymond Hettingerd1452402008-03-24 06:07:49 +0000209 .. versionadded:: 2.6
Raymond Hettingerc4f7bab2008-03-23 19:37:53 +0000210
Georg Brandl8ec7f652007-08-15 14:28:01 +0000211
212.. function:: betavariate(alpha, beta)
213
Georg Brandl9f7fb842009-01-18 13:24:10 +0000214 Beta distribution. Conditions on the parameters are ``alpha > 0`` and
215 ``beta > 0``. Returned values range between 0 and 1.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000216
217
218.. function:: expovariate(lambd)
219
Mark Dickinsone6dc5312009-01-07 17:48:33 +0000220 Exponential distribution. *lambd* is 1.0 divided by the desired
221 mean. It should be nonzero. (The parameter would be called
222 "lambda", but that is a reserved word in Python.) Returned values
223 range from 0 to positive infinity if *lambd* is positive, and from
224 negative infinity to 0 if *lambd* is negative.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000225
226
227.. function:: gammavariate(alpha, beta)
228
Georg Brandl9f7fb842009-01-18 13:24:10 +0000229 Gamma distribution. (*Not* the gamma function!) Conditions on the
230 parameters are ``alpha > 0`` and ``beta > 0``.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000231
232
233.. function:: gauss(mu, sigma)
234
Georg Brandl9f7fb842009-01-18 13:24:10 +0000235 Gaussian distribution. *mu* is the mean, and *sigma* is the standard
236 deviation. This is slightly faster than the :func:`normalvariate` function
237 defined below.
Georg Brandl8ec7f652007-08-15 14:28:01 +0000238
239
240.. function:: lognormvariate(mu, sigma)
241
242 Log normal distribution. If you take the natural logarithm of this
243 distribution, you'll get a normal distribution with mean *mu* and standard
244 deviation *sigma*. *mu* can have any value, and *sigma* must be greater than
245 zero.
246
247
248.. function:: normalvariate(mu, sigma)
249
250 Normal distribution. *mu* is the mean, and *sigma* is the standard deviation.
251
252
253.. function:: vonmisesvariate(mu, kappa)
254
255 *mu* is the mean angle, expressed in radians between 0 and 2\*\ *pi*, and *kappa*
256 is the concentration parameter, which must be greater than or equal to zero. If
257 *kappa* is equal to zero, this distribution reduces to a uniform random angle
258 over the range 0 to 2\*\ *pi*.
259
260
261.. function:: paretovariate(alpha)
262
263 Pareto distribution. *alpha* is the shape parameter.
264
265
266.. function:: weibullvariate(alpha, beta)
267
268 Weibull distribution. *alpha* is the scale parameter and *beta* is the shape
269 parameter.
270
271
272Alternative Generators:
273
274.. class:: WichmannHill([seed])
275
276 Class that implements the Wichmann-Hill algorithm as the core generator. Has all
277 of the same methods as :class:`Random` plus the :meth:`whseed` method described
278 below. Because this class is implemented in pure Python, it is not threadsafe
279 and may require locks between calls. The period of the generator is
280 6,953,607,871,644 which is small enough to require care that two independent
281 random sequences do not overlap.
282
283
284.. function:: whseed([x])
285
286 This is obsolete, supplied for bit-level compatibility with versions of Python
287 prior to 2.1. See :func:`seed` for details. :func:`whseed` does not guarantee
288 that distinct integer arguments yield distinct internal states, and can yield no
289 more than about 2\*\*24 distinct internal states in all.
290
291
292.. class:: SystemRandom([seed])
293
294 Class that uses the :func:`os.urandom` function for generating random numbers
295 from sources provided by the operating system. Not available on all systems.
296 Does not rely on software state and sequences are not reproducible. Accordingly,
297 the :meth:`seed` and :meth:`jumpahead` methods have no effect and are ignored.
298 The :meth:`getstate` and :meth:`setstate` methods raise
299 :exc:`NotImplementedError` if called.
300
301 .. versionadded:: 2.4
302
303Examples of basic usage::
304
305 >>> random.random() # Random float x, 0.0 <= x < 1.0
306 0.37444887175646646
307 >>> random.uniform(1, 10) # Random float x, 1.0 <= x < 10.0
308 1.1800146073117523
309 >>> random.randint(1, 10) # Integer from 1 to 10, endpoints included
310 7
311 >>> random.randrange(0, 101, 2) # Even integer from 0 to 100
312 26
313 >>> random.choice('abcdefghij') # Choose a random element
314 'c'
315
316 >>> items = [1, 2, 3, 4, 5, 6, 7]
317 >>> random.shuffle(items)
318 >>> items
319 [7, 3, 2, 5, 6, 4, 1]
320
321 >>> random.sample([1, 2, 3, 4, 5], 3) # Choose 3 elements
322 [4, 1, 5]
323
324
325
326.. seealso::
327
328 M. Matsumoto and T. Nishimura, "Mersenne Twister: A 623-dimensionally
329 equidistributed uniform pseudorandom number generator", ACM Transactions on
330 Modeling and Computer Simulation Vol. 8, No. 1, January pp.3-30 1998.
331
332 Wichmann, B. A. & Hill, I. D., "Algorithm AS 183: An efficient and portable
333 pseudo-random number generator", Applied Statistics 31 (1982) 188-190.
334
Raymond Hettingerfff2f4b2009-04-01 20:50:58 +0000335 `Complementary-Multiply-with-Carry recipe
Andrew M. Kuchlinge9d35ef2009-04-02 00:02:14 +0000336 <http://code.activestate.com/recipes/576707/>`_ for a compatible alternative
337 random number generator with a long period and comparatively simple update
Raymond Hettingerfff2f4b2009-04-01 20:50:58 +0000338 operations.