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