Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | :mod:`random` --- Generate pseudo-random numbers |
| 2 | ================================================ |
| 3 | |
| 4 | .. module:: random |
| 5 | :synopsis: Generate pseudo-random numbers with various common distributions. |
| 6 | |
Raymond Hettinger | 1048094 | 2011-01-10 03:26:08 +0000 | [diff] [blame] | 7 | **Source code:** :source:`Lib/random.py` |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 8 | |
Raymond Hettinger | 4f707fd | 2011-01-10 19:54:11 +0000 | [diff] [blame] | 9 | -------------- |
| 10 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 11 | This module implements pseudo-random number generators for various |
| 12 | distributions. |
| 13 | |
Raymond Hettinger | b21dac1 | 2010-09-07 05:32:49 +0000 | [diff] [blame] | 14 | For integers, there is uniform selection from a range. For sequences, there is |
| 15 | uniform selection of a random element, a function to generate a random |
| 16 | permutation of a list in-place, and a function for random sampling without |
| 17 | replacement. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 18 | |
| 19 | On the real line, there are functions to compute uniform, normal (Gaussian), |
| 20 | lognormal, negative exponential, gamma, and beta distributions. For generating |
| 21 | distributions of angles, the von Mises distribution is available. |
| 22 | |
Georg Brandl | 92849d1 | 2016-02-19 08:57:38 +0100 | [diff] [blame] | 23 | Almost all module functions depend on the basic function :func:`.random`, which |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 24 | generates a random float uniformly in the semi-open range [0.0, 1.0). Python |
| 25 | uses the Mersenne Twister as the core generator. It produces 53-bit precision |
| 26 | floats and has a period of 2\*\*19937-1. The underlying implementation in C is |
| 27 | both fast and threadsafe. The Mersenne Twister is one of the most extensively |
| 28 | tested random number generators in existence. However, being completely |
| 29 | deterministic, it is not suitable for all purposes, and is completely unsuitable |
| 30 | for cryptographic purposes. |
| 31 | |
| 32 | The functions supplied by this module are actually bound methods of a hidden |
| 33 | instance of the :class:`random.Random` class. You can instantiate your own |
Raymond Hettinger | 28de64f | 2008-01-13 23:40:30 +0000 | [diff] [blame] | 34 | instances of :class:`Random` to get generators that don't share state. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 35 | |
| 36 | Class :class:`Random` can also be subclassed if you want to use a different |
Georg Brandl | 92849d1 | 2016-02-19 08:57:38 +0100 | [diff] [blame] | 37 | basic generator of your own devising: in that case, override the :meth:`~Random.random`, |
| 38 | :meth:`~Random.seed`, :meth:`~Random.getstate`, and :meth:`~Random.setstate` methods. |
| 39 | Optionally, a new generator can supply a :meth:`~Random.getrandbits` method --- this |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 40 | allows :meth:`randrange` to produce selections over an arbitrarily large range. |
| 41 | |
Benjamin Peterson | 21896a3 | 2010-03-21 22:03:03 +0000 | [diff] [blame] | 42 | The :mod:`random` module also provides the :class:`SystemRandom` class which |
| 43 | uses the system function :func:`os.urandom` to generate random numbers |
| 44 | from sources provided by the operating system. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 45 | |
Raymond Hettinger | c89a451 | 2014-05-11 02:26:23 -0700 | [diff] [blame] | 46 | .. warning:: |
| 47 | |
| 48 | The pseudo-random generators of this module should not be used for |
Steven D'Aprano | b2871fa | 2016-04-17 01:42:33 +1000 | [diff] [blame] | 49 | security purposes. For security or cryptographic uses, see the |
| 50 | :mod:`secrets` module. |
Raymond Hettinger | c89a451 | 2014-05-11 02:26:23 -0700 | [diff] [blame] | 51 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 52 | |
Raymond Hettinger | 1048094 | 2011-01-10 03:26:08 +0000 | [diff] [blame] | 53 | Bookkeeping functions: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 54 | |
Ezio Melotti | e0add76 | 2012-09-14 06:32:35 +0300 | [diff] [blame] | 55 | .. function:: seed(a=None, version=2) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 56 | |
Raymond Hettinger | f763a72 | 2010-09-07 00:38:15 +0000 | [diff] [blame] | 57 | Initialize the random number generator. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 58 | |
Ezio Melotti | e0add76 | 2012-09-14 06:32:35 +0300 | [diff] [blame] | 59 | If *a* is omitted or ``None``, the current system time is used. If |
Raymond Hettinger | f763a72 | 2010-09-07 00:38:15 +0000 | [diff] [blame] | 60 | randomness sources are provided by the operating system, they are used |
| 61 | instead of the system time (see the :func:`os.urandom` function for details |
| 62 | on availability). |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 63 | |
Ezio Melotti | e0add76 | 2012-09-14 06:32:35 +0300 | [diff] [blame] | 64 | If *a* is an int, it is used directly. |
Raymond Hettinger | f763a72 | 2010-09-07 00:38:15 +0000 | [diff] [blame] | 65 | |
| 66 | With version 2 (the default), a :class:`str`, :class:`bytes`, or :class:`bytearray` |
Raymond Hettinger | 3149f9c | 2010-09-07 05:35:10 +0000 | [diff] [blame] | 67 | object gets converted to an :class:`int` and all of its bits are used. With version 1, |
Ezio Melotti | e0add76 | 2012-09-14 06:32:35 +0300 | [diff] [blame] | 68 | the :func:`hash` of *a* is used instead. |
Raymond Hettinger | f763a72 | 2010-09-07 00:38:15 +0000 | [diff] [blame] | 69 | |
| 70 | .. versionchanged:: 3.2 |
| 71 | Moved to the version 2 scheme which uses all of the bits in a string seed. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 72 | |
| 73 | .. function:: getstate() |
| 74 | |
| 75 | Return an object capturing the current internal state of the generator. This |
| 76 | object can be passed to :func:`setstate` to restore the state. |
| 77 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 78 | |
| 79 | .. function:: setstate(state) |
| 80 | |
| 81 | *state* should have been obtained from a previous call to :func:`getstate`, and |
| 82 | :func:`setstate` restores the internal state of the generator to what it was at |
Sandro Tosi | 985104a | 2012-08-12 15:12:15 +0200 | [diff] [blame] | 83 | the time :func:`getstate` was called. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 84 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 85 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 86 | .. function:: getrandbits(k) |
| 87 | |
Ezio Melotti | 0639d5a | 2009-12-19 23:26:38 +0000 | [diff] [blame] | 88 | Returns a Python integer with *k* random bits. This method is supplied with |
Georg Brandl | 5c10664 | 2007-11-29 17:41:05 +0000 | [diff] [blame] | 89 | the MersenneTwister generator and some other generators may also provide it |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 90 | as an optional part of the API. When available, :meth:`getrandbits` enables |
| 91 | :meth:`randrange` to handle arbitrarily large ranges. |
| 92 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 93 | |
| 94 | Functions for integers: |
| 95 | |
Ezio Melotti | e0add76 | 2012-09-14 06:32:35 +0300 | [diff] [blame] | 96 | .. function:: randrange(stop) |
| 97 | randrange(start, stop[, step]) |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 98 | |
| 99 | Return a randomly selected element from ``range(start, stop, step)``. This is |
| 100 | equivalent to ``choice(range(start, stop, step))``, but doesn't actually build a |
| 101 | range object. |
| 102 | |
Raymond Hettinger | 0515661 | 2010-09-07 04:44:52 +0000 | [diff] [blame] | 103 | The positional argument pattern matches that of :func:`range`. Keyword arguments |
| 104 | should not be used because the function may use them in unexpected ways. |
| 105 | |
| 106 | .. versionchanged:: 3.2 |
| 107 | :meth:`randrange` is more sophisticated about producing equally distributed |
| 108 | values. Formerly it used a style like ``int(random()*n)`` which could produce |
| 109 | slightly uneven distributions. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 110 | |
| 111 | .. function:: randint(a, b) |
| 112 | |
Raymond Hettinger | afd3045 | 2009-02-24 10:57:02 +0000 | [diff] [blame] | 113 | Return a random integer *N* such that ``a <= N <= b``. Alias for |
| 114 | ``randrange(a, b+1)``. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 115 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 116 | |
Georg Brandl | 55ac8f0 | 2007-09-01 13:51:09 +0000 | [diff] [blame] | 117 | Functions for sequences: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 118 | |
| 119 | .. function:: choice(seq) |
| 120 | |
| 121 | Return a random element from the non-empty sequence *seq*. If *seq* is empty, |
| 122 | raises :exc:`IndexError`. |
| 123 | |
| 124 | |
| 125 | .. function:: shuffle(x[, random]) |
| 126 | |
| 127 | Shuffle the sequence *x* in place. The optional argument *random* is a |
| 128 | 0-argument function returning a random float in [0.0, 1.0); by default, this is |
Georg Brandl | 92849d1 | 2016-02-19 08:57:38 +0100 | [diff] [blame] | 129 | the function :func:`.random`. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 130 | |
| 131 | Note that for even rather small ``len(x)``, the total number of permutations of |
| 132 | *x* is larger than the period of most random number generators; this implies |
| 133 | that most permutations of a long sequence can never be generated. |
| 134 | |
| 135 | |
| 136 | .. function:: sample(population, k) |
| 137 | |
Raymond Hettinger | 1acde19 | 2008-01-14 01:00:53 +0000 | [diff] [blame] | 138 | Return a *k* length list of unique elements chosen from the population sequence |
| 139 | or set. Used for random sampling without replacement. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 140 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 141 | Returns a new list containing elements from the population while leaving the |
| 142 | original population unchanged. The resulting list is in selection order so that |
| 143 | all sub-slices will also be valid random samples. This allows raffle winners |
| 144 | (the sample) to be partitioned into grand prize and second place winners (the |
| 145 | subslices). |
| 146 | |
Guido van Rossum | 2cc30da | 2007-11-02 23:46:40 +0000 | [diff] [blame] | 147 | 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] | 148 | contains repeats, then each occurrence is a possible selection in the sample. |
| 149 | |
| 150 | To choose a sample from a range of integers, use an :func:`range` object as an |
| 151 | argument. This is especially fast and space efficient for sampling from a large |
| 152 | population: ``sample(range(10000000), 60)``. |
| 153 | |
Raymond Hettinger | f07d949 | 2012-07-09 12:43:57 -0700 | [diff] [blame] | 154 | If the sample size is larger than the population size, a :exc:`ValueError` |
Raymond Hettinger | 86a20f8 | 2012-07-08 16:01:53 -0700 | [diff] [blame] | 155 | is raised. |
| 156 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 157 | The following functions generate specific real-valued distributions. Function |
| 158 | parameters are named after the corresponding variables in the distribution's |
| 159 | equation, as used in common mathematical practice; most of these equations can |
| 160 | be found in any statistics text. |
| 161 | |
| 162 | |
| 163 | .. function:: random() |
| 164 | |
| 165 | Return the next random floating point number in the range [0.0, 1.0). |
| 166 | |
| 167 | |
| 168 | .. function:: uniform(a, b) |
| 169 | |
Benjamin Peterson | b58dda7 | 2009-01-18 22:27:04 +0000 | [diff] [blame] | 170 | Return a random floating point number *N* such that ``a <= N <= b`` for |
| 171 | ``a <= b`` and ``b <= N <= a`` for ``b < a``. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 172 | |
Raymond Hettinger | be40db0 | 2009-06-11 23:12:14 +0000 | [diff] [blame] | 173 | The end-point value ``b`` may or may not be included in the range |
| 174 | depending on floating-point rounding in the equation ``a + (b-a) * random()``. |
Benjamin Peterson | 35e8c46 | 2008-04-24 02:34:53 +0000 | [diff] [blame] | 175 | |
Georg Brandl | 73dd7c7 | 2011-09-17 20:36:28 +0200 | [diff] [blame] | 176 | |
Christian Heimes | fe337bf | 2008-03-23 21:54:12 +0000 | [diff] [blame] | 177 | .. function:: triangular(low, high, mode) |
| 178 | |
Benjamin Peterson | b58dda7 | 2009-01-18 22:27:04 +0000 | [diff] [blame] | 179 | Return a random floating point number *N* such that ``low <= N <= high`` and |
Christian Heimes | cc47b05 | 2008-03-25 14:56:36 +0000 | [diff] [blame] | 180 | with the specified *mode* between those bounds. The *low* and *high* bounds |
| 181 | default to zero and one. The *mode* argument defaults to the midpoint |
| 182 | between the bounds, giving a symmetric distribution. |
Christian Heimes | fe337bf | 2008-03-23 21:54:12 +0000 | [diff] [blame] | 183 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 184 | |
| 185 | .. function:: betavariate(alpha, beta) |
| 186 | |
Benjamin Peterson | b58dda7 | 2009-01-18 22:27:04 +0000 | [diff] [blame] | 187 | Beta distribution. Conditions on the parameters are ``alpha > 0`` and |
| 188 | ``beta > 0``. Returned values range between 0 and 1. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 189 | |
| 190 | |
| 191 | .. function:: expovariate(lambd) |
| 192 | |
Mark Dickinson | 2f94736 | 2009-01-07 17:54:07 +0000 | [diff] [blame] | 193 | Exponential distribution. *lambd* is 1.0 divided by the desired |
| 194 | mean. It should be nonzero. (The parameter would be called |
| 195 | "lambda", but that is a reserved word in Python.) Returned values |
| 196 | range from 0 to positive infinity if *lambd* is positive, and from |
| 197 | negative infinity to 0 if *lambd* is negative. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 198 | |
| 199 | |
| 200 | .. function:: gammavariate(alpha, beta) |
| 201 | |
Benjamin Peterson | b58dda7 | 2009-01-18 22:27:04 +0000 | [diff] [blame] | 202 | Gamma distribution. (*Not* the gamma function!) Conditions on the |
| 203 | parameters are ``alpha > 0`` and ``beta > 0``. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 204 | |
Georg Brandl | 73dd7c7 | 2011-09-17 20:36:28 +0200 | [diff] [blame] | 205 | The probability distribution function is:: |
| 206 | |
| 207 | x ** (alpha - 1) * math.exp(-x / beta) |
| 208 | pdf(x) = -------------------------------------- |
| 209 | math.gamma(alpha) * beta ** alpha |
| 210 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 211 | |
| 212 | .. function:: gauss(mu, sigma) |
| 213 | |
Benjamin Peterson | b58dda7 | 2009-01-18 22:27:04 +0000 | [diff] [blame] | 214 | Gaussian distribution. *mu* is the mean, and *sigma* is the standard |
| 215 | deviation. This is slightly faster than the :func:`normalvariate` function |
| 216 | defined below. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 217 | |
| 218 | |
| 219 | .. function:: lognormvariate(mu, sigma) |
| 220 | |
| 221 | Log normal distribution. If you take the natural logarithm of this |
| 222 | distribution, you'll get a normal distribution with mean *mu* and standard |
| 223 | deviation *sigma*. *mu* can have any value, and *sigma* must be greater than |
| 224 | zero. |
| 225 | |
| 226 | |
| 227 | .. function:: normalvariate(mu, sigma) |
| 228 | |
| 229 | Normal distribution. *mu* is the mean, and *sigma* is the standard deviation. |
| 230 | |
| 231 | |
| 232 | .. function:: vonmisesvariate(mu, kappa) |
| 233 | |
| 234 | *mu* is the mean angle, expressed in radians between 0 and 2\*\ *pi*, and *kappa* |
| 235 | is the concentration parameter, which must be greater than or equal to zero. If |
| 236 | *kappa* is equal to zero, this distribution reduces to a uniform random angle |
| 237 | over the range 0 to 2\*\ *pi*. |
| 238 | |
| 239 | |
| 240 | .. function:: paretovariate(alpha) |
| 241 | |
| 242 | Pareto distribution. *alpha* is the shape parameter. |
| 243 | |
| 244 | |
| 245 | .. function:: weibullvariate(alpha, beta) |
| 246 | |
| 247 | Weibull distribution. *alpha* is the scale parameter and *beta* is the shape |
| 248 | parameter. |
| 249 | |
| 250 | |
Raymond Hettinger | 3cdf871 | 2010-12-02 05:35:35 +0000 | [diff] [blame] | 251 | Alternative Generator: |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 252 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 253 | .. class:: SystemRandom([seed]) |
| 254 | |
| 255 | Class that uses the :func:`os.urandom` function for generating random numbers |
| 256 | from sources provided by the operating system. Not available on all systems. |
Raymond Hettinger | 3cdf871 | 2010-12-02 05:35:35 +0000 | [diff] [blame] | 257 | Does not rely on software state, and sequences are not reproducible. Accordingly, |
Raymond Hettinger | afd3045 | 2009-02-24 10:57:02 +0000 | [diff] [blame] | 258 | the :meth:`seed` method has no effect and is ignored. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 259 | The :meth:`getstate` and :meth:`setstate` methods raise |
| 260 | :exc:`NotImplementedError` if called. |
| 261 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 262 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 263 | .. seealso:: |
| 264 | |
| 265 | M. Matsumoto and T. Nishimura, "Mersenne Twister: A 623-dimensionally |
| 266 | equidistributed uniform pseudorandom number generator", ACM Transactions on |
| 267 | Modeling and Computer Simulation Vol. 8, No. 1, January pp.3-30 1998. |
| 268 | |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 269 | |
Raymond Hettinger | 1fd32a6 | 2009-04-01 20:52:13 +0000 | [diff] [blame] | 270 | `Complementary-Multiply-with-Carry recipe |
Georg Brandl | 5d94134 | 2016-02-26 19:37:12 +0100 | [diff] [blame] | 271 | <https://code.activestate.com/recipes/576707/>`_ for a compatible alternative |
Raymond Hettinger | 9743fd0 | 2009-04-03 05:47:33 +0000 | [diff] [blame] | 272 | random number generator with a long period and comparatively simple update |
Raymond Hettinger | 1fd32a6 | 2009-04-01 20:52:13 +0000 | [diff] [blame] | 273 | operations. |
Raymond Hettinger | 435cb0f | 2010-09-06 23:36:31 +0000 | [diff] [blame] | 274 | |
Raymond Hettinger | 3cdf871 | 2010-12-02 05:35:35 +0000 | [diff] [blame] | 275 | |
Raymond Hettinger | 435cb0f | 2010-09-06 23:36:31 +0000 | [diff] [blame] | 276 | Notes on Reproducibility |
Antoine Pitrou | e72b586 | 2010-12-12 20:13:31 +0000 | [diff] [blame] | 277 | ------------------------ |
Raymond Hettinger | 435cb0f | 2010-09-06 23:36:31 +0000 | [diff] [blame] | 278 | |
| 279 | Sometimes it is useful to be able to reproduce the sequences given by a pseudo |
| 280 | random number generator. By re-using a seed value, the same sequence should be |
| 281 | reproducible from run to run as long as multiple threads are not running. |
| 282 | |
| 283 | Most of the random module's algorithms and seeding functions are subject to |
| 284 | change across Python versions, but two aspects are guaranteed not to change: |
| 285 | |
| 286 | * If a new seeding method is added, then a backward compatible seeder will be |
| 287 | offered. |
| 288 | |
Georg Brandl | 92849d1 | 2016-02-19 08:57:38 +0100 | [diff] [blame] | 289 | * The generator's :meth:`~Random.random` method will continue to produce the same |
Raymond Hettinger | 435cb0f | 2010-09-06 23:36:31 +0000 | [diff] [blame] | 290 | sequence when the compatible seeder is given the same seed. |
Raymond Hettinger | 2fdc7b1 | 2010-12-02 02:41:33 +0000 | [diff] [blame] | 291 | |
Raymond Hettinger | 6e35394 | 2010-12-04 23:42:12 +0000 | [diff] [blame] | 292 | .. _random-examples: |
Raymond Hettinger | 2fdc7b1 | 2010-12-02 02:41:33 +0000 | [diff] [blame] | 293 | |
Raymond Hettinger | 2fdc7b1 | 2010-12-02 02:41:33 +0000 | [diff] [blame] | 294 | Examples and Recipes |
Antoine Pitrou | e72b586 | 2010-12-12 20:13:31 +0000 | [diff] [blame] | 295 | -------------------- |
Raymond Hettinger | 2fdc7b1 | 2010-12-02 02:41:33 +0000 | [diff] [blame] | 296 | |
Raymond Hettinger | 3cdf871 | 2010-12-02 05:35:35 +0000 | [diff] [blame] | 297 | Basic usage:: |
| 298 | |
| 299 | >>> random.random() # Random float x, 0.0 <= x < 1.0 |
| 300 | 0.37444887175646646 |
| 301 | |
| 302 | >>> random.uniform(1, 10) # Random float x, 1.0 <= x < 10.0 |
| 303 | 1.1800146073117523 |
| 304 | |
| 305 | >>> random.randrange(10) # Integer from 0 to 9 |
| 306 | 7 |
| 307 | |
| 308 | >>> random.randrange(0, 101, 2) # Even integer from 0 to 100 |
| 309 | 26 |
| 310 | |
| 311 | >>> random.choice('abcdefghij') # Single random element |
| 312 | 'c' |
| 313 | |
| 314 | >>> items = [1, 2, 3, 4, 5, 6, 7] |
| 315 | >>> random.shuffle(items) |
| 316 | >>> items |
| 317 | [7, 3, 2, 5, 6, 4, 1] |
| 318 | |
| 319 | >>> random.sample([1, 2, 3, 4, 5], 3) # Three samples without replacement |
| 320 | [4, 1, 5] |
| 321 | |
Sandro Tosi | 1ee1719 | 2012-04-14 16:01:17 +0200 | [diff] [blame] | 322 | A common task is to make a :func:`random.choice` with weighted probabilities. |
Raymond Hettinger | 2fdc7b1 | 2010-12-02 02:41:33 +0000 | [diff] [blame] | 323 | |
| 324 | If the weights are small integer ratios, a simple technique is to build a sample |
| 325 | population with repeats:: |
| 326 | |
| 327 | >>> weighted_choices = [('Red', 3), ('Blue', 2), ('Yellow', 1), ('Green', 4)] |
| 328 | >>> population = [val for val, cnt in weighted_choices for i in range(cnt)] |
| 329 | >>> random.choice(population) |
| 330 | 'Green' |
| 331 | |
Raymond Hettinger | 3cdf871 | 2010-12-02 05:35:35 +0000 | [diff] [blame] | 332 | A more general approach is to arrange the weights in a cumulative distribution |
| 333 | with :func:`itertools.accumulate`, and then locate the random value with |
| 334 | :func:`bisect.bisect`:: |
Raymond Hettinger | 2fdc7b1 | 2010-12-02 02:41:33 +0000 | [diff] [blame] | 335 | |
| 336 | >>> choices, weights = zip(*weighted_choices) |
| 337 | >>> cumdist = list(itertools.accumulate(weights)) |
| 338 | >>> x = random.random() * cumdist[-1] |
| 339 | >>> choices[bisect.bisect(cumdist, x)] |
| 340 | 'Blue' |