Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +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 |
Raymond Hettinger | 28de64f | 2008-01-13 23:40:30 +0000 | [diff] [blame] | 31 | instances of :class:`Random` to get generators that don't share state. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 32 | |
| 33 | Class :class:`Random` can also be subclassed if you want to use a different |
| 34 | basic generator of your own devising: in that case, override the :meth:`random`, |
Raymond Hettinger | 28de64f | 2008-01-13 23:40:30 +0000 | [diff] [blame] | 35 | :meth:`seed`, :meth:`getstate`, and :meth:`setstate`. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 36 | Optionally, a new generator can supply a :meth:`getrandombits` method --- this |
| 37 | allows :meth:`randrange` to produce selections over an arbitrarily large range. |
| 38 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 39 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 40 | Bookkeeping functions: |
| 41 | |
| 42 | |
| 43 | .. function:: seed([x]) |
| 44 | |
| 45 | Initialize the basic random number generator. Optional argument *x* can be any |
Guido van Rossum | 2cc30da | 2007-11-02 23:46:40 +0000 | [diff] [blame] | 46 | :term:`hashable` object. If *x* is omitted or ``None``, current system time is used; |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 47 | current system time is also used to initialize the generator when the module is |
| 48 | first imported. If randomness sources are provided by the operating system, |
| 49 | they are used instead of the system time (see the :func:`os.urandom` function |
| 50 | for details on availability). |
| 51 | |
Georg Brandl | 5c10664 | 2007-11-29 17:41:05 +0000 | [diff] [blame] | 52 | If *x* is not ``None`` or an int, ``hash(x)`` is used instead. If *x* is an |
| 53 | int, *x* is used directly. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 54 | |
| 55 | |
| 56 | .. function:: getstate() |
| 57 | |
| 58 | Return an object capturing the current internal state of the generator. This |
| 59 | object can be passed to :func:`setstate` to restore the state. |
| 60 | |
Christian Heimes | cbf3b5c | 2007-12-03 21:02:03 +0000 | [diff] [blame] | 61 | State values produced in Python 2.6 cannot be loaded into earlier versions. |
| 62 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 63 | |
| 64 | .. function:: setstate(state) |
| 65 | |
| 66 | *state* should have been obtained from a previous call to :func:`getstate`, and |
| 67 | :func:`setstate` restores the internal state of the generator to what it was at |
| 68 | the time :func:`setstate` was called. |
| 69 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 70 | |
Christian Heimes | c3f30c4 | 2008-02-22 16:37:40 +0000 | [diff] [blame] | 71 | .. function:: jumpahead(n) |
| 72 | |
| 73 | Change the internal state to one different from and likely far away from the |
| 74 | current state. *n* is a non-negative integer which is used to scramble the |
| 75 | current state vector. This is most useful in multi-threaded programs, in |
| 76 | conjunction with multiple instances of the :class:`Random` class: |
| 77 | :meth:`setstate` or :meth:`seed` can be used to force all instances into the |
| 78 | same internal state, and then :meth:`jumpahead` can be used to force the |
| 79 | instances' states far apart. |
| 80 | |
| 81 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 82 | .. function:: getrandbits(k) |
| 83 | |
Georg Brandl | 5c10664 | 2007-11-29 17:41:05 +0000 | [diff] [blame] | 84 | Returns a python integer with *k* random bits. This method is supplied with |
| 85 | the MersenneTwister generator and some other generators may also provide it |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 86 | as an optional part of the API. When available, :meth:`getrandbits` enables |
| 87 | :meth:`randrange` to handle arbitrarily large ranges. |
| 88 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 89 | |
| 90 | Functions for integers: |
| 91 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 92 | .. function:: randrange([start,] stop[, step]) |
| 93 | |
| 94 | Return a randomly selected element from ``range(start, stop, step)``. This is |
| 95 | equivalent to ``choice(range(start, stop, step))``, but doesn't actually build a |
| 96 | range object. |
| 97 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 98 | |
| 99 | .. function:: randint(a, b) |
| 100 | |
| 101 | Return a random integer *N* such that ``a <= N <= b``. |
| 102 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 103 | |
Georg Brandl | 55ac8f0 | 2007-09-01 13:51:09 +0000 | [diff] [blame] | 104 | Functions for sequences: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 105 | |
| 106 | .. function:: choice(seq) |
| 107 | |
| 108 | Return a random element from the non-empty sequence *seq*. If *seq* is empty, |
| 109 | raises :exc:`IndexError`. |
| 110 | |
| 111 | |
| 112 | .. function:: shuffle(x[, random]) |
| 113 | |
| 114 | Shuffle the sequence *x* in place. The optional argument *random* is a |
| 115 | 0-argument function returning a random float in [0.0, 1.0); by default, this is |
| 116 | the function :func:`random`. |
| 117 | |
| 118 | Note that for even rather small ``len(x)``, the total number of permutations of |
| 119 | *x* is larger than the period of most random number generators; this implies |
| 120 | that most permutations of a long sequence can never be generated. |
| 121 | |
| 122 | |
| 123 | .. function:: sample(population, k) |
| 124 | |
Raymond Hettinger | 1acde19 | 2008-01-14 01:00:53 +0000 | [diff] [blame] | 125 | Return a *k* length list of unique elements chosen from the population sequence |
| 126 | or set. Used for random sampling without replacement. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 127 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 128 | Returns a new list containing elements from the population while leaving the |
| 129 | original population unchanged. The resulting list is in selection order so that |
| 130 | all sub-slices will also be valid random samples. This allows raffle winners |
| 131 | (the sample) to be partitioned into grand prize and second place winners (the |
| 132 | subslices). |
| 133 | |
Guido van Rossum | 2cc30da | 2007-11-02 23:46:40 +0000 | [diff] [blame] | 134 | Members of the population need not be :term:`hashable` or unique. If the population |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 135 | contains repeats, then each occurrence is a possible selection in the sample. |
| 136 | |
| 137 | To choose a sample from a range of integers, use an :func:`range` object as an |
| 138 | argument. This is especially fast and space efficient for sampling from a large |
| 139 | population: ``sample(range(10000000), 60)``. |
| 140 | |
| 141 | The following functions generate specific real-valued distributions. Function |
| 142 | parameters are named after the corresponding variables in the distribution's |
| 143 | equation, as used in common mathematical practice; most of these equations can |
| 144 | be found in any statistics text. |
| 145 | |
| 146 | |
| 147 | .. function:: random() |
| 148 | |
| 149 | Return the next random floating point number in the range [0.0, 1.0). |
| 150 | |
| 151 | |
| 152 | .. function:: uniform(a, b) |
| 153 | |
| 154 | Return a random floating point number *N* such that ``a <= N < b``. |
| 155 | |
Benjamin Peterson | 35e8c46 | 2008-04-24 02:34:53 +0000 | [diff] [blame] | 156 | |
Christian Heimes | fe337bf | 2008-03-23 21:54:12 +0000 | [diff] [blame] | 157 | .. function:: triangular(low, high, mode) |
| 158 | |
Christian Heimes | cc47b05 | 2008-03-25 14:56:36 +0000 | [diff] [blame] | 159 | Return a random floating point number *N* such that ``low <= N < high`` and |
| 160 | with the specified *mode* between those bounds. The *low* and *high* bounds |
| 161 | default to zero and one. The *mode* argument defaults to the midpoint |
| 162 | between the bounds, giving a symmetric distribution. |
Christian Heimes | fe337bf | 2008-03-23 21:54:12 +0000 | [diff] [blame] | 163 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 164 | |
| 165 | .. function:: betavariate(alpha, beta) |
| 166 | |
| 167 | Beta distribution. Conditions on the parameters are ``alpha > 0`` and ``beta > |
| 168 | 0``. Returned values range between 0 and 1. |
| 169 | |
| 170 | |
| 171 | .. function:: expovariate(lambd) |
| 172 | |
| 173 | Exponential distribution. *lambd* is 1.0 divided by the desired mean. (The |
| 174 | parameter would be called "lambda", but that is a reserved word in Python.) |
| 175 | Returned values range from 0 to positive infinity. |
| 176 | |
| 177 | |
| 178 | .. function:: gammavariate(alpha, beta) |
| 179 | |
| 180 | Gamma distribution. (*Not* the gamma function!) Conditions on the parameters |
| 181 | are ``alpha > 0`` and ``beta > 0``. |
| 182 | |
| 183 | |
| 184 | .. function:: gauss(mu, sigma) |
| 185 | |
| 186 | Gaussian distribution. *mu* is the mean, and *sigma* is the standard deviation. |
| 187 | This is slightly faster than the :func:`normalvariate` function defined below. |
| 188 | |
| 189 | |
| 190 | .. function:: lognormvariate(mu, sigma) |
| 191 | |
| 192 | Log normal distribution. If you take the natural logarithm of this |
| 193 | distribution, you'll get a normal distribution with mean *mu* and standard |
| 194 | deviation *sigma*. *mu* can have any value, and *sigma* must be greater than |
| 195 | zero. |
| 196 | |
| 197 | |
| 198 | .. function:: normalvariate(mu, sigma) |
| 199 | |
| 200 | Normal distribution. *mu* is the mean, and *sigma* is the standard deviation. |
| 201 | |
| 202 | |
| 203 | .. function:: vonmisesvariate(mu, kappa) |
| 204 | |
| 205 | *mu* is the mean angle, expressed in radians between 0 and 2\*\ *pi*, and *kappa* |
| 206 | is the concentration parameter, which must be greater than or equal to zero. If |
| 207 | *kappa* is equal to zero, this distribution reduces to a uniform random angle |
| 208 | over the range 0 to 2\*\ *pi*. |
| 209 | |
| 210 | |
| 211 | .. function:: paretovariate(alpha) |
| 212 | |
| 213 | Pareto distribution. *alpha* is the shape parameter. |
| 214 | |
| 215 | |
| 216 | .. function:: weibullvariate(alpha, beta) |
| 217 | |
| 218 | Weibull distribution. *alpha* is the scale parameter and *beta* is the shape |
| 219 | parameter. |
| 220 | |
| 221 | |
| 222 | Alternative Generators: |
| 223 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 224 | .. class:: SystemRandom([seed]) |
| 225 | |
| 226 | Class that uses the :func:`os.urandom` function for generating random numbers |
| 227 | from sources provided by the operating system. Not available on all systems. |
| 228 | Does not rely on software state and sequences are not reproducible. Accordingly, |
| 229 | the :meth:`seed` and :meth:`jumpahead` methods have no effect and are ignored. |
| 230 | The :meth:`getstate` and :meth:`setstate` methods raise |
| 231 | :exc:`NotImplementedError` if called. |
| 232 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 233 | |
| 234 | Examples of basic usage:: |
| 235 | |
| 236 | >>> random.random() # Random float x, 0.0 <= x < 1.0 |
| 237 | 0.37444887175646646 |
| 238 | >>> random.uniform(1, 10) # Random float x, 1.0 <= x < 10.0 |
| 239 | 1.1800146073117523 |
| 240 | >>> random.randint(1, 10) # Integer from 1 to 10, endpoints included |
| 241 | 7 |
| 242 | >>> random.randrange(0, 101, 2) # Even integer from 0 to 100 |
| 243 | 26 |
| 244 | >>> random.choice('abcdefghij') # Choose a random element |
| 245 | 'c' |
| 246 | |
| 247 | >>> items = [1, 2, 3, 4, 5, 6, 7] |
| 248 | >>> random.shuffle(items) |
| 249 | >>> items |
| 250 | [7, 3, 2, 5, 6, 4, 1] |
| 251 | |
| 252 | >>> random.sample([1, 2, 3, 4, 5], 3) # Choose 3 elements |
| 253 | [4, 1, 5] |
| 254 | |
| 255 | |
| 256 | |
| 257 | .. seealso:: |
| 258 | |
| 259 | M. Matsumoto and T. Nishimura, "Mersenne Twister: A 623-dimensionally |
| 260 | equidistributed uniform pseudorandom number generator", ACM Transactions on |
| 261 | Modeling and Computer Simulation Vol. 8, No. 1, January pp.3-30 1998. |
| 262 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 263 | |