2007-08-15 11:28:01 -03:00
|
|
|
|
|
|
|
:mod:`random` --- Generate pseudo-random numbers
|
|
|
|
================================================
|
|
|
|
|
|
|
|
.. module:: random
|
|
|
|
:synopsis: Generate pseudo-random numbers with various common distributions.
|
|
|
|
|
|
|
|
|
|
|
|
This module implements pseudo-random number generators for various
|
|
|
|
distributions.
|
|
|
|
|
|
|
|
For integers, uniform selection from a range. For sequences, uniform selection
|
|
|
|
of a random element, a function to generate a random permutation of a list
|
|
|
|
in-place, and a function for random sampling without replacement.
|
|
|
|
|
|
|
|
On the real line, there are functions to compute uniform, normal (Gaussian),
|
|
|
|
lognormal, negative exponential, gamma, and beta distributions. For generating
|
|
|
|
distributions of angles, the von Mises distribution is available.
|
|
|
|
|
|
|
|
Almost all module functions depend on the basic function :func:`random`, which
|
|
|
|
generates a random float uniformly in the semi-open range [0.0, 1.0). Python
|
|
|
|
uses the Mersenne Twister as the core generator. It produces 53-bit precision
|
|
|
|
floats and has a period of 2\*\*19937-1. The underlying implementation in C is
|
|
|
|
both fast and threadsafe. The Mersenne Twister is one of the most extensively
|
|
|
|
tested random number generators in existence. However, being completely
|
|
|
|
deterministic, it is not suitable for all purposes, and is completely unsuitable
|
|
|
|
for cryptographic purposes.
|
|
|
|
|
|
|
|
The functions supplied by this module are actually bound methods of a hidden
|
|
|
|
instance of the :class:`random.Random` class. You can instantiate your own
|
|
|
|
instances of :class:`Random` to get generators that don't share state. This is
|
|
|
|
especially useful for multi-threaded programs, creating a different instance of
|
|
|
|
:class:`Random` for each thread, and using the :meth:`jumpahead` method to make
|
|
|
|
it likely that the generated sequences seen by each thread don't overlap.
|
|
|
|
|
|
|
|
Class :class:`Random` can also be subclassed if you want to use a different
|
|
|
|
basic generator of your own devising: in that case, override the :meth:`random`,
|
|
|
|
:meth:`seed`, :meth:`getstate`, :meth:`setstate` and :meth:`jumpahead` methods.
|
2008-07-30 10:46:53 -03:00
|
|
|
Optionally, a new generator can supply a :meth:`getrandbits` method --- this
|
2007-08-15 11:28:01 -03:00
|
|
|
allows :meth:`randrange` to produce selections over an arbitrarily large range.
|
|
|
|
|
|
|
|
.. versionadded:: 2.4
|
2008-07-30 10:46:53 -03:00
|
|
|
the :meth:`getrandbits` method.
|
2007-08-15 11:28:01 -03:00
|
|
|
|
|
|
|
As an example of subclassing, the :mod:`random` module provides the
|
|
|
|
:class:`WichmannHill` class that implements an alternative generator in pure
|
|
|
|
Python. The class provides a backward compatible way to reproduce results from
|
|
|
|
earlier versions of Python, which used the Wichmann-Hill algorithm as the core
|
|
|
|
generator. Note that this Wichmann-Hill generator can no longer be recommended:
|
|
|
|
its period is too short by contemporary standards, and the sequence generated is
|
|
|
|
known to fail some stringent randomness tests. See the references below for a
|
|
|
|
recent variant that repairs these flaws.
|
|
|
|
|
|
|
|
.. versionchanged:: 2.3
|
|
|
|
Substituted MersenneTwister for Wichmann-Hill.
|
|
|
|
|
|
|
|
Bookkeeping functions:
|
|
|
|
|
|
|
|
|
|
|
|
.. function:: seed([x])
|
|
|
|
|
|
|
|
Initialize the basic random number generator. Optional argument *x* can be any
|
2007-11-02 17:06:17 -03:00
|
|
|
:term:`hashable` object. If *x* is omitted or ``None``, current system time is used;
|
2007-08-15 11:28:01 -03:00
|
|
|
current system time is also used to initialize the generator when the module is
|
|
|
|
first imported. If randomness sources are provided by the operating system,
|
|
|
|
they are used instead of the system time (see the :func:`os.urandom` function
|
|
|
|
for details on availability).
|
|
|
|
|
|
|
|
.. versionchanged:: 2.4
|
|
|
|
formerly, operating system resources were not used.
|
|
|
|
|
|
|
|
If *x* is not ``None`` or an int or long, ``hash(x)`` is used instead. If *x* is
|
|
|
|
an int or long, *x* is used directly.
|
|
|
|
|
|
|
|
|
|
|
|
.. function:: getstate()
|
|
|
|
|
|
|
|
Return an object capturing the current internal state of the generator. This
|
|
|
|
object can be passed to :func:`setstate` to restore the state.
|
|
|
|
|
|
|
|
.. versionadded:: 2.1
|
|
|
|
|
2007-12-03 15:20:02 -04:00
|
|
|
.. versionchanged:: 2.6
|
|
|
|
State values produced in Python 2.6 cannot be loaded into earlier versions.
|
|
|
|
|
2007-08-15 11:28:01 -03:00
|
|
|
|
|
|
|
.. function:: setstate(state)
|
|
|
|
|
|
|
|
*state* should have been obtained from a previous call to :func:`getstate`, and
|
|
|
|
:func:`setstate` restores the internal state of the generator to what it was at
|
|
|
|
the time :func:`setstate` was called.
|
|
|
|
|
|
|
|
.. versionadded:: 2.1
|
|
|
|
|
|
|
|
|
|
|
|
.. function:: jumpahead(n)
|
|
|
|
|
|
|
|
Change the internal state to one different from and likely far away from the
|
|
|
|
current state. *n* is a non-negative integer which is used to scramble the
|
|
|
|
current state vector. This is most useful in multi-threaded programs, in
|
2008-02-22 08:31:45 -04:00
|
|
|
conjunction with multiple instances of the :class:`Random` class:
|
2007-08-15 11:28:01 -03:00
|
|
|
:meth:`setstate` or :meth:`seed` can be used to force all instances into the
|
|
|
|
same internal state, and then :meth:`jumpahead` can be used to force the
|
|
|
|
instances' states far apart.
|
|
|
|
|
|
|
|
.. versionadded:: 2.1
|
|
|
|
|
|
|
|
.. versionchanged:: 2.3
|
|
|
|
Instead of jumping to a specific state, *n* steps ahead, ``jumpahead(n)``
|
|
|
|
jumps to another state likely to be separated by many steps.
|
|
|
|
|
|
|
|
|
|
|
|
.. function:: getrandbits(k)
|
|
|
|
|
|
|
|
Returns a python :class:`long` int with *k* random bits. This method is supplied
|
|
|
|
with the MersenneTwister generator and some other generators may also provide it
|
|
|
|
as an optional part of the API. When available, :meth:`getrandbits` enables
|
|
|
|
:meth:`randrange` to handle arbitrarily large ranges.
|
|
|
|
|
|
|
|
.. versionadded:: 2.4
|
|
|
|
|
|
|
|
Functions for integers:
|
|
|
|
|
|
|
|
|
|
|
|
.. function:: randrange([start,] stop[, step])
|
|
|
|
|
|
|
|
Return a randomly selected element from ``range(start, stop, step)``. This is
|
|
|
|
equivalent to ``choice(range(start, stop, step))``, but doesn't actually build a
|
|
|
|
range object.
|
|
|
|
|
|
|
|
.. versionadded:: 1.5.2
|
|
|
|
|
|
|
|
|
|
|
|
.. function:: randint(a, b)
|
|
|
|
|
|
|
|
Return a random integer *N* such that ``a <= N <= b``.
|
|
|
|
|
|
|
|
Functions for sequences:
|
|
|
|
|
|
|
|
|
|
|
|
.. function:: choice(seq)
|
|
|
|
|
|
|
|
Return a random element from the non-empty sequence *seq*. If *seq* is empty,
|
|
|
|
raises :exc:`IndexError`.
|
|
|
|
|
|
|
|
|
|
|
|
.. function:: shuffle(x[, random])
|
|
|
|
|
|
|
|
Shuffle the sequence *x* in place. The optional argument *random* is a
|
|
|
|
0-argument function returning a random float in [0.0, 1.0); by default, this is
|
|
|
|
the function :func:`random`.
|
|
|
|
|
|
|
|
Note that for even rather small ``len(x)``, the total number of permutations of
|
|
|
|
*x* is larger than the period of most random number generators; this implies
|
|
|
|
that most permutations of a long sequence can never be generated.
|
|
|
|
|
|
|
|
|
|
|
|
.. function:: sample(population, k)
|
|
|
|
|
|
|
|
Return a *k* length list of unique elements chosen from the population sequence.
|
|
|
|
Used for random sampling without replacement.
|
|
|
|
|
|
|
|
.. versionadded:: 2.3
|
|
|
|
|
|
|
|
Returns a new list containing elements from the population while leaving the
|
|
|
|
original population unchanged. The resulting list is in selection order so that
|
|
|
|
all sub-slices will also be valid random samples. This allows raffle winners
|
|
|
|
(the sample) to be partitioned into grand prize and second place winners (the
|
|
|
|
subslices).
|
|
|
|
|
2007-11-02 17:06:17 -03:00
|
|
|
Members of the population need not be :term:`hashable` or unique. If the population
|
2007-08-15 11:28:01 -03:00
|
|
|
contains repeats, then each occurrence is a possible selection in the sample.
|
|
|
|
|
|
|
|
To choose a sample from a range of integers, use an :func:`xrange` object as an
|
|
|
|
argument. This is especially fast and space efficient for sampling from a large
|
|
|
|
population: ``sample(xrange(10000000), 60)``.
|
|
|
|
|
|
|
|
The following functions generate specific real-valued distributions. Function
|
|
|
|
parameters are named after the corresponding variables in the distribution's
|
|
|
|
equation, as used in common mathematical practice; most of these equations can
|
|
|
|
be found in any statistics text.
|
|
|
|
|
|
|
|
|
|
|
|
.. function:: random()
|
|
|
|
|
|
|
|
Return the next random floating point number in the range [0.0, 1.0).
|
|
|
|
|
|
|
|
|
|
|
|
.. function:: uniform(a, b)
|
|
|
|
|
Merged revisions 68582,68718,68720-68721,68724-68727,68859,68973,69288-69289,69293,69295,69297-69301,69409,69414,69570,69573,69576,69728-69730,69769,69776,69803-69805,69840,69896 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r68582 | georg.brandl | 2009-01-13 23:14:01 +0100 (Di, 13 Jan 2009) | 2 lines
Use assertRaises.
........
r68718 | georg.brandl | 2009-01-18 11:42:35 +0100 (So, 18 Jan 2009) | 1 line
#4976: union() and intersection() take multiple args, but talk about "the other".
........
r68720 | georg.brandl | 2009-01-18 11:45:22 +0100 (So, 18 Jan 2009) | 1 line
#4974: fix redundant mention of lists and tuples.
........
r68721 | georg.brandl | 2009-01-18 11:48:16 +0100 (So, 18 Jan 2009) | 1 line
#4914: trunc is in math.
........
r68724 | georg.brandl | 2009-01-18 14:24:10 +0100 (So, 18 Jan 2009) | 1 line
#4979: correct result range for some random functions.
........
r68725 | georg.brandl | 2009-01-18 14:47:26 +0100 (So, 18 Jan 2009) | 1 line
#4857: fix augmented assignment target spec.
........
r68726 | georg.brandl | 2009-01-18 15:41:52 +0100 (So, 18 Jan 2009) | 1 line
#4923: clarify what was added.
........
r68727 | georg.brandl | 2009-01-18 19:25:30 +0100 (So, 18 Jan 2009) | 1 line
#4986: augassigns are not expressions.
........
r68859 | georg.brandl | 2009-01-22 19:29:28 +0100 (Do, 22 Jan 2009) | 2 lines
Clarify wording.
........
r68973 | georg.brandl | 2009-01-26 22:29:38 +0100 (Mo, 26 Jan 2009) | 2 lines
Copy over docs on advanced role features from Sphinx docs.
........
r69288 | georg.brandl | 2009-02-05 11:30:57 +0100 (Do, 05 Feb 2009) | 1 line
#5153: fix typo in example.
........
r69289 | georg.brandl | 2009-02-05 11:37:07 +0100 (Do, 05 Feb 2009) | 1 line
#5144: document that PySys_SetArgv prepends the script directory (or the empty string) to sys.path.
........
r69293 | georg.brandl | 2009-02-05 11:59:28 +0100 (Do, 05 Feb 2009) | 1 line
#5059: fix example.
........
r69295 | georg.brandl | 2009-02-05 12:23:47 +0100 (Do, 05 Feb 2009) | 1 line
PyErr_PrintEx is also in 2.x...
........
r69297 | georg.brandl | 2009-02-05 12:32:18 +0100 (Do, 05 Feb 2009) | 1 line
#5015: document PythonHome API functions.
........
r69298 | georg.brandl | 2009-02-05 12:33:21 +0100 (Do, 05 Feb 2009) | 1 line
#4827: fix callback example.
........
r69299 | georg.brandl | 2009-02-05 12:35:28 +0100 (Do, 05 Feb 2009) | 1 line
#4820: use correct module for ctypes.util.
........
r69300 | georg.brandl | 2009-02-05 12:38:23 +0100 (Do, 05 Feb 2009) | 1 line
#4563: disable alpha and roman lists, fixes wrong formatting of contributor list.
........
r69301 | georg.brandl | 2009-02-05 12:40:35 +0100 (Do, 05 Feb 2009) | 1 line
#5031: fix Thread.daemon property docs.
........
r69409 | georg.brandl | 2009-02-07 13:21:17 +0100 (Sa, 07 Feb 2009) | 1 line
#5174: fix wrong file closing in example.
........
r69414 | georg.brandl | 2009-02-07 19:49:54 +0100 (Sa, 07 Feb 2009) | 1 line
make "super only for new-style classes" a note.
........
r69570 | georg.brandl | 2009-02-13 11:40:14 +0100 (Fr, 13 Feb 2009) | 1 line
#4894: document "newurl" parameter to redirect_request().
........
r69573 | georg.brandl | 2009-02-13 11:44:17 +0100 (Fr, 13 Feb 2009) | 1 line
#3734: document complex coercing behavior better.
........
r69576 | georg.brandl | 2009-02-13 11:56:50 +0100 (Fr, 13 Feb 2009) | 1 line
#1661108: note that urlsafe encoded string can contain "=".
........
r69728 | georg.brandl | 2009-02-18 01:22:55 +0100 (Mi, 18 Feb 2009) | 2 lines
#5297: fix example.
........
r69729 | georg.brandl | 2009-02-18 01:25:13 +0100 (Mi, 18 Feb 2009) | 2 lines
#5296: sequence -> iterable.
........
r69730 | georg.brandl | 2009-02-18 01:31:36 +0100 (Mi, 18 Feb 2009) | 2 lines
#5268: mention VMSError.
........
r69769 | georg.brandl | 2009-02-19 09:30:06 +0100 (Do, 19 Feb 2009) | 1 line
#5310, #3558: fix operator precedence table.
........
r69776 | georg.brandl | 2009-02-19 17:34:51 +0100 (Do, 19 Feb 2009) | 2 lines
#5317: update IronPython URL.
........
r69803 | georg.brandl | 2009-02-20 08:48:21 +0100 (Fr, 20 Feb 2009) | 1 line
#5327: fix a broken link by joining it.
........
r69804 | georg.brandl | 2009-02-20 09:22:21 +0100 (Fr, 20 Feb 2009) | 1 line
At least separate imports from other statements.
........
r69805 | georg.brandl | 2009-02-20 09:45:47 +0100 (Fr, 20 Feb 2009) | 2 lines
Fix punctuation.
........
r69840 | georg.brandl | 2009-02-21 20:09:40 +0100 (Sa, 21 Feb 2009) | 1 line
#5338, #5339: two types in the API manual.
........
r69896 | georg.brandl | 2009-02-23 11:24:23 +0100 (Mo, 23 Feb 2009) | 1 line
#5348: format() converts all kinds of values.
........
2009-02-23 06:41:11 -04:00
|
|
|
Return a random floating point number *N* such that ``a <= N <= b`` for
|
|
|
|
``a <= b`` and ``b <= N <= a`` for ``b < a``.
|
2008-09-21 05:03:21 -03:00
|
|
|
|
2007-08-15 11:28:01 -03:00
|
|
|
|
2008-03-23 10:32:32 -03:00
|
|
|
.. function:: triangular(low, high, mode)
|
|
|
|
|
Merged revisions 68582,68718,68720-68721,68724-68727,68859,68973,69288-69289,69293,69295,69297-69301,69409,69414,69570,69573,69576,69728-69730,69769,69776,69803-69805,69840,69896 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r68582 | georg.brandl | 2009-01-13 23:14:01 +0100 (Di, 13 Jan 2009) | 2 lines
Use assertRaises.
........
r68718 | georg.brandl | 2009-01-18 11:42:35 +0100 (So, 18 Jan 2009) | 1 line
#4976: union() and intersection() take multiple args, but talk about "the other".
........
r68720 | georg.brandl | 2009-01-18 11:45:22 +0100 (So, 18 Jan 2009) | 1 line
#4974: fix redundant mention of lists and tuples.
........
r68721 | georg.brandl | 2009-01-18 11:48:16 +0100 (So, 18 Jan 2009) | 1 line
#4914: trunc is in math.
........
r68724 | georg.brandl | 2009-01-18 14:24:10 +0100 (So, 18 Jan 2009) | 1 line
#4979: correct result range for some random functions.
........
r68725 | georg.brandl | 2009-01-18 14:47:26 +0100 (So, 18 Jan 2009) | 1 line
#4857: fix augmented assignment target spec.
........
r68726 | georg.brandl | 2009-01-18 15:41:52 +0100 (So, 18 Jan 2009) | 1 line
#4923: clarify what was added.
........
r68727 | georg.brandl | 2009-01-18 19:25:30 +0100 (So, 18 Jan 2009) | 1 line
#4986: augassigns are not expressions.
........
r68859 | georg.brandl | 2009-01-22 19:29:28 +0100 (Do, 22 Jan 2009) | 2 lines
Clarify wording.
........
r68973 | georg.brandl | 2009-01-26 22:29:38 +0100 (Mo, 26 Jan 2009) | 2 lines
Copy over docs on advanced role features from Sphinx docs.
........
r69288 | georg.brandl | 2009-02-05 11:30:57 +0100 (Do, 05 Feb 2009) | 1 line
#5153: fix typo in example.
........
r69289 | georg.brandl | 2009-02-05 11:37:07 +0100 (Do, 05 Feb 2009) | 1 line
#5144: document that PySys_SetArgv prepends the script directory (or the empty string) to sys.path.
........
r69293 | georg.brandl | 2009-02-05 11:59:28 +0100 (Do, 05 Feb 2009) | 1 line
#5059: fix example.
........
r69295 | georg.brandl | 2009-02-05 12:23:47 +0100 (Do, 05 Feb 2009) | 1 line
PyErr_PrintEx is also in 2.x...
........
r69297 | georg.brandl | 2009-02-05 12:32:18 +0100 (Do, 05 Feb 2009) | 1 line
#5015: document PythonHome API functions.
........
r69298 | georg.brandl | 2009-02-05 12:33:21 +0100 (Do, 05 Feb 2009) | 1 line
#4827: fix callback example.
........
r69299 | georg.brandl | 2009-02-05 12:35:28 +0100 (Do, 05 Feb 2009) | 1 line
#4820: use correct module for ctypes.util.
........
r69300 | georg.brandl | 2009-02-05 12:38:23 +0100 (Do, 05 Feb 2009) | 1 line
#4563: disable alpha and roman lists, fixes wrong formatting of contributor list.
........
r69301 | georg.brandl | 2009-02-05 12:40:35 +0100 (Do, 05 Feb 2009) | 1 line
#5031: fix Thread.daemon property docs.
........
r69409 | georg.brandl | 2009-02-07 13:21:17 +0100 (Sa, 07 Feb 2009) | 1 line
#5174: fix wrong file closing in example.
........
r69414 | georg.brandl | 2009-02-07 19:49:54 +0100 (Sa, 07 Feb 2009) | 1 line
make "super only for new-style classes" a note.
........
r69570 | georg.brandl | 2009-02-13 11:40:14 +0100 (Fr, 13 Feb 2009) | 1 line
#4894: document "newurl" parameter to redirect_request().
........
r69573 | georg.brandl | 2009-02-13 11:44:17 +0100 (Fr, 13 Feb 2009) | 1 line
#3734: document complex coercing behavior better.
........
r69576 | georg.brandl | 2009-02-13 11:56:50 +0100 (Fr, 13 Feb 2009) | 1 line
#1661108: note that urlsafe encoded string can contain "=".
........
r69728 | georg.brandl | 2009-02-18 01:22:55 +0100 (Mi, 18 Feb 2009) | 2 lines
#5297: fix example.
........
r69729 | georg.brandl | 2009-02-18 01:25:13 +0100 (Mi, 18 Feb 2009) | 2 lines
#5296: sequence -> iterable.
........
r69730 | georg.brandl | 2009-02-18 01:31:36 +0100 (Mi, 18 Feb 2009) | 2 lines
#5268: mention VMSError.
........
r69769 | georg.brandl | 2009-02-19 09:30:06 +0100 (Do, 19 Feb 2009) | 1 line
#5310, #3558: fix operator precedence table.
........
r69776 | georg.brandl | 2009-02-19 17:34:51 +0100 (Do, 19 Feb 2009) | 2 lines
#5317: update IronPython URL.
........
r69803 | georg.brandl | 2009-02-20 08:48:21 +0100 (Fr, 20 Feb 2009) | 1 line
#5327: fix a broken link by joining it.
........
r69804 | georg.brandl | 2009-02-20 09:22:21 +0100 (Fr, 20 Feb 2009) | 1 line
At least separate imports from other statements.
........
r69805 | georg.brandl | 2009-02-20 09:45:47 +0100 (Fr, 20 Feb 2009) | 2 lines
Fix punctuation.
........
r69840 | georg.brandl | 2009-02-21 20:09:40 +0100 (Sa, 21 Feb 2009) | 1 line
#5338, #5339: two types in the API manual.
........
r69896 | georg.brandl | 2009-02-23 11:24:23 +0100 (Mo, 23 Feb 2009) | 1 line
#5348: format() converts all kinds of values.
........
2009-02-23 06:41:11 -04:00
|
|
|
Return a random floating point number *N* such that ``low <= N <= high`` and
|
2008-03-24 03:07:49 -03:00
|
|
|
with the specified *mode* between those bounds. The *low* and *high* bounds
|
|
|
|
default to zero and one. The *mode* argument defaults to the midpoint
|
|
|
|
between the bounds, giving a symmetric distribution.
|
2008-03-23 16:37:53 -03:00
|
|
|
|
2008-03-24 03:07:49 -03:00
|
|
|
.. versionadded:: 2.6
|
2008-03-23 16:37:53 -03:00
|
|
|
|
2007-08-15 11:28:01 -03:00
|
|
|
|
|
|
|
.. function:: betavariate(alpha, beta)
|
|
|
|
|
Merged revisions 68582,68718,68720-68721,68724-68727,68859,68973,69288-69289,69293,69295,69297-69301,69409,69414,69570,69573,69576,69728-69730,69769,69776,69803-69805,69840,69896 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r68582 | georg.brandl | 2009-01-13 23:14:01 +0100 (Di, 13 Jan 2009) | 2 lines
Use assertRaises.
........
r68718 | georg.brandl | 2009-01-18 11:42:35 +0100 (So, 18 Jan 2009) | 1 line
#4976: union() and intersection() take multiple args, but talk about "the other".
........
r68720 | georg.brandl | 2009-01-18 11:45:22 +0100 (So, 18 Jan 2009) | 1 line
#4974: fix redundant mention of lists and tuples.
........
r68721 | georg.brandl | 2009-01-18 11:48:16 +0100 (So, 18 Jan 2009) | 1 line
#4914: trunc is in math.
........
r68724 | georg.brandl | 2009-01-18 14:24:10 +0100 (So, 18 Jan 2009) | 1 line
#4979: correct result range for some random functions.
........
r68725 | georg.brandl | 2009-01-18 14:47:26 +0100 (So, 18 Jan 2009) | 1 line
#4857: fix augmented assignment target spec.
........
r68726 | georg.brandl | 2009-01-18 15:41:52 +0100 (So, 18 Jan 2009) | 1 line
#4923: clarify what was added.
........
r68727 | georg.brandl | 2009-01-18 19:25:30 +0100 (So, 18 Jan 2009) | 1 line
#4986: augassigns are not expressions.
........
r68859 | georg.brandl | 2009-01-22 19:29:28 +0100 (Do, 22 Jan 2009) | 2 lines
Clarify wording.
........
r68973 | georg.brandl | 2009-01-26 22:29:38 +0100 (Mo, 26 Jan 2009) | 2 lines
Copy over docs on advanced role features from Sphinx docs.
........
r69288 | georg.brandl | 2009-02-05 11:30:57 +0100 (Do, 05 Feb 2009) | 1 line
#5153: fix typo in example.
........
r69289 | georg.brandl | 2009-02-05 11:37:07 +0100 (Do, 05 Feb 2009) | 1 line
#5144: document that PySys_SetArgv prepends the script directory (or the empty string) to sys.path.
........
r69293 | georg.brandl | 2009-02-05 11:59:28 +0100 (Do, 05 Feb 2009) | 1 line
#5059: fix example.
........
r69295 | georg.brandl | 2009-02-05 12:23:47 +0100 (Do, 05 Feb 2009) | 1 line
PyErr_PrintEx is also in 2.x...
........
r69297 | georg.brandl | 2009-02-05 12:32:18 +0100 (Do, 05 Feb 2009) | 1 line
#5015: document PythonHome API functions.
........
r69298 | georg.brandl | 2009-02-05 12:33:21 +0100 (Do, 05 Feb 2009) | 1 line
#4827: fix callback example.
........
r69299 | georg.brandl | 2009-02-05 12:35:28 +0100 (Do, 05 Feb 2009) | 1 line
#4820: use correct module for ctypes.util.
........
r69300 | georg.brandl | 2009-02-05 12:38:23 +0100 (Do, 05 Feb 2009) | 1 line
#4563: disable alpha and roman lists, fixes wrong formatting of contributor list.
........
r69301 | georg.brandl | 2009-02-05 12:40:35 +0100 (Do, 05 Feb 2009) | 1 line
#5031: fix Thread.daemon property docs.
........
r69409 | georg.brandl | 2009-02-07 13:21:17 +0100 (Sa, 07 Feb 2009) | 1 line
#5174: fix wrong file closing in example.
........
r69414 | georg.brandl | 2009-02-07 19:49:54 +0100 (Sa, 07 Feb 2009) | 1 line
make "super only for new-style classes" a note.
........
r69570 | georg.brandl | 2009-02-13 11:40:14 +0100 (Fr, 13 Feb 2009) | 1 line
#4894: document "newurl" parameter to redirect_request().
........
r69573 | georg.brandl | 2009-02-13 11:44:17 +0100 (Fr, 13 Feb 2009) | 1 line
#3734: document complex coercing behavior better.
........
r69576 | georg.brandl | 2009-02-13 11:56:50 +0100 (Fr, 13 Feb 2009) | 1 line
#1661108: note that urlsafe encoded string can contain "=".
........
r69728 | georg.brandl | 2009-02-18 01:22:55 +0100 (Mi, 18 Feb 2009) | 2 lines
#5297: fix example.
........
r69729 | georg.brandl | 2009-02-18 01:25:13 +0100 (Mi, 18 Feb 2009) | 2 lines
#5296: sequence -> iterable.
........
r69730 | georg.brandl | 2009-02-18 01:31:36 +0100 (Mi, 18 Feb 2009) | 2 lines
#5268: mention VMSError.
........
r69769 | georg.brandl | 2009-02-19 09:30:06 +0100 (Do, 19 Feb 2009) | 1 line
#5310, #3558: fix operator precedence table.
........
r69776 | georg.brandl | 2009-02-19 17:34:51 +0100 (Do, 19 Feb 2009) | 2 lines
#5317: update IronPython URL.
........
r69803 | georg.brandl | 2009-02-20 08:48:21 +0100 (Fr, 20 Feb 2009) | 1 line
#5327: fix a broken link by joining it.
........
r69804 | georg.brandl | 2009-02-20 09:22:21 +0100 (Fr, 20 Feb 2009) | 1 line
At least separate imports from other statements.
........
r69805 | georg.brandl | 2009-02-20 09:45:47 +0100 (Fr, 20 Feb 2009) | 2 lines
Fix punctuation.
........
r69840 | georg.brandl | 2009-02-21 20:09:40 +0100 (Sa, 21 Feb 2009) | 1 line
#5338, #5339: two types in the API manual.
........
r69896 | georg.brandl | 2009-02-23 11:24:23 +0100 (Mo, 23 Feb 2009) | 1 line
#5348: format() converts all kinds of values.
........
2009-02-23 06:41:11 -04:00
|
|
|
Beta distribution. Conditions on the parameters are ``alpha > 0`` and
|
|
|
|
``beta > 0``. Returned values range between 0 and 1.
|
2007-08-15 11:28:01 -03:00
|
|
|
|
|
|
|
|
|
|
|
.. function:: expovariate(lambd)
|
|
|
|
|
Merged revisions 68292,68344,68361,68378,68424,68426,68429-68430,68450,68457,68480-68481,68493,68495,68499,68501,68512,68514-68515 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r68292 | skip.montanaro | 2009-01-04 11:36:58 +0100 (So, 04 Jan 2009) | 3 lines
If user configures --without-gcc give preference to $CC instead of blindly
assuming the compiler will be "cc".
........
r68344 | marc-andre.lemburg | 2009-01-05 20:43:35 +0100 (Mo, 05 Jan 2009) | 7 lines
Fix #4846 (Py_UNICODE_ISSPACE causes linker error) by moving the declaration
into the extern "C" section.
Add a few more comments and apply some minor edits to make the file contents
fit the original structure again.
........
r68361 | antoine.pitrou | 2009-01-06 19:34:08 +0100 (Di, 06 Jan 2009) | 3 lines
Use shutil.rmtree rather than os.rmdir.
........
r68378 | mark.dickinson | 2009-01-07 18:48:33 +0100 (Mi, 07 Jan 2009) | 2 lines
Issue #4869: clarify documentation for random.expovariate.
........
r68424 | benjamin.peterson | 2009-01-09 03:53:35 +0100 (Fr, 09 Jan 2009) | 1 line
specify what -3 warnings are about
........
r68426 | benjamin.peterson | 2009-01-09 04:03:05 +0100 (Fr, 09 Jan 2009) | 1 line
fix spelling
........
r68429 | benjamin.peterson | 2009-01-09 04:05:14 +0100 (Fr, 09 Jan 2009) | 1 line
add -3 to manpage
........
r68430 | benjamin.peterson | 2009-01-09 04:07:27 +0100 (Fr, 09 Jan 2009) | 1 line
be more specific in -3 option help
........
r68450 | jeffrey.yasskin | 2009-01-09 17:47:07 +0100 (Fr, 09 Jan 2009) | 3 lines
Fix issue 4884, preventing a crash in the socket code when python is compiled
with llvm-gcc and run with a glibc <2.10.
........
r68457 | kristjan.jonsson | 2009-01-09 21:10:59 +0100 (Fr, 09 Jan 2009) | 1 line
Issue 3677: Fix import from UNC paths on Windows.
........
r68480 | vinay.sajip | 2009-01-10 14:38:04 +0100 (Sa, 10 Jan 2009) | 1 line
Minor documentation changes cross-referencing NullHandler to the documentation on configuring logging in a library.
........
r68481 | vinay.sajip | 2009-01-10 14:42:04 +0100 (Sa, 10 Jan 2009) | 1 line
Corrected an incorrect self-reference.
........
r68493 | benjamin.peterson | 2009-01-10 18:18:55 +0100 (Sa, 10 Jan 2009) | 1 line
rewrite verbose conditionals
........
r68495 | benjamin.peterson | 2009-01-10 18:36:44 +0100 (Sa, 10 Jan 2009) | 1 line
tp_iter only exists with Py_TPFLAGS_HAVE_ITER #4901
........
r68499 | mark.dickinson | 2009-01-10 20:14:55 +0100 (Sa, 10 Jan 2009) | 2 lines
Remove an unnecessary check from test_decimal.
........
r68501 | vinay.sajip | 2009-01-10 20:22:57 +0100 (Sa, 10 Jan 2009) | 1 line
Corrected minor typo and added .currentmodule directives to fix missing cross-references.
........
r68512 | benjamin.peterson | 2009-01-10 23:42:10 +0100 (Sa, 10 Jan 2009) | 1 line
make tests fail if they can't be imported
........
r68514 | benjamin.peterson | 2009-01-11 00:41:59 +0100 (So, 11 Jan 2009) | 1 line
move seealso to a more appropiate place
........
r68515 | benjamin.peterson | 2009-01-11 00:49:08 +0100 (So, 11 Jan 2009) | 1 line
macos 9 isn't supported
........
2009-01-13 20:00:17 -04:00
|
|
|
Exponential distribution. *lambd* is 1.0 divided by the desired
|
|
|
|
mean. It should be nonzero. (The parameter would be called
|
|
|
|
"lambda", but that is a reserved word in Python.) Returned values
|
|
|
|
range from 0 to positive infinity if *lambd* is positive, and from
|
|
|
|
negative infinity to 0 if *lambd* is negative.
|
2007-08-15 11:28:01 -03:00
|
|
|
|
|
|
|
|
|
|
|
.. function:: gammavariate(alpha, beta)
|
|
|
|
|
Merged revisions 68582,68718,68720-68721,68724-68727,68859,68973,69288-69289,69293,69295,69297-69301,69409,69414,69570,69573,69576,69728-69730,69769,69776,69803-69805,69840,69896 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r68582 | georg.brandl | 2009-01-13 23:14:01 +0100 (Di, 13 Jan 2009) | 2 lines
Use assertRaises.
........
r68718 | georg.brandl | 2009-01-18 11:42:35 +0100 (So, 18 Jan 2009) | 1 line
#4976: union() and intersection() take multiple args, but talk about "the other".
........
r68720 | georg.brandl | 2009-01-18 11:45:22 +0100 (So, 18 Jan 2009) | 1 line
#4974: fix redundant mention of lists and tuples.
........
r68721 | georg.brandl | 2009-01-18 11:48:16 +0100 (So, 18 Jan 2009) | 1 line
#4914: trunc is in math.
........
r68724 | georg.brandl | 2009-01-18 14:24:10 +0100 (So, 18 Jan 2009) | 1 line
#4979: correct result range for some random functions.
........
r68725 | georg.brandl | 2009-01-18 14:47:26 +0100 (So, 18 Jan 2009) | 1 line
#4857: fix augmented assignment target spec.
........
r68726 | georg.brandl | 2009-01-18 15:41:52 +0100 (So, 18 Jan 2009) | 1 line
#4923: clarify what was added.
........
r68727 | georg.brandl | 2009-01-18 19:25:30 +0100 (So, 18 Jan 2009) | 1 line
#4986: augassigns are not expressions.
........
r68859 | georg.brandl | 2009-01-22 19:29:28 +0100 (Do, 22 Jan 2009) | 2 lines
Clarify wording.
........
r68973 | georg.brandl | 2009-01-26 22:29:38 +0100 (Mo, 26 Jan 2009) | 2 lines
Copy over docs on advanced role features from Sphinx docs.
........
r69288 | georg.brandl | 2009-02-05 11:30:57 +0100 (Do, 05 Feb 2009) | 1 line
#5153: fix typo in example.
........
r69289 | georg.brandl | 2009-02-05 11:37:07 +0100 (Do, 05 Feb 2009) | 1 line
#5144: document that PySys_SetArgv prepends the script directory (or the empty string) to sys.path.
........
r69293 | georg.brandl | 2009-02-05 11:59:28 +0100 (Do, 05 Feb 2009) | 1 line
#5059: fix example.
........
r69295 | georg.brandl | 2009-02-05 12:23:47 +0100 (Do, 05 Feb 2009) | 1 line
PyErr_PrintEx is also in 2.x...
........
r69297 | georg.brandl | 2009-02-05 12:32:18 +0100 (Do, 05 Feb 2009) | 1 line
#5015: document PythonHome API functions.
........
r69298 | georg.brandl | 2009-02-05 12:33:21 +0100 (Do, 05 Feb 2009) | 1 line
#4827: fix callback example.
........
r69299 | georg.brandl | 2009-02-05 12:35:28 +0100 (Do, 05 Feb 2009) | 1 line
#4820: use correct module for ctypes.util.
........
r69300 | georg.brandl | 2009-02-05 12:38:23 +0100 (Do, 05 Feb 2009) | 1 line
#4563: disable alpha and roman lists, fixes wrong formatting of contributor list.
........
r69301 | georg.brandl | 2009-02-05 12:40:35 +0100 (Do, 05 Feb 2009) | 1 line
#5031: fix Thread.daemon property docs.
........
r69409 | georg.brandl | 2009-02-07 13:21:17 +0100 (Sa, 07 Feb 2009) | 1 line
#5174: fix wrong file closing in example.
........
r69414 | georg.brandl | 2009-02-07 19:49:54 +0100 (Sa, 07 Feb 2009) | 1 line
make "super only for new-style classes" a note.
........
r69570 | georg.brandl | 2009-02-13 11:40:14 +0100 (Fr, 13 Feb 2009) | 1 line
#4894: document "newurl" parameter to redirect_request().
........
r69573 | georg.brandl | 2009-02-13 11:44:17 +0100 (Fr, 13 Feb 2009) | 1 line
#3734: document complex coercing behavior better.
........
r69576 | georg.brandl | 2009-02-13 11:56:50 +0100 (Fr, 13 Feb 2009) | 1 line
#1661108: note that urlsafe encoded string can contain "=".
........
r69728 | georg.brandl | 2009-02-18 01:22:55 +0100 (Mi, 18 Feb 2009) | 2 lines
#5297: fix example.
........
r69729 | georg.brandl | 2009-02-18 01:25:13 +0100 (Mi, 18 Feb 2009) | 2 lines
#5296: sequence -> iterable.
........
r69730 | georg.brandl | 2009-02-18 01:31:36 +0100 (Mi, 18 Feb 2009) | 2 lines
#5268: mention VMSError.
........
r69769 | georg.brandl | 2009-02-19 09:30:06 +0100 (Do, 19 Feb 2009) | 1 line
#5310, #3558: fix operator precedence table.
........
r69776 | georg.brandl | 2009-02-19 17:34:51 +0100 (Do, 19 Feb 2009) | 2 lines
#5317: update IronPython URL.
........
r69803 | georg.brandl | 2009-02-20 08:48:21 +0100 (Fr, 20 Feb 2009) | 1 line
#5327: fix a broken link by joining it.
........
r69804 | georg.brandl | 2009-02-20 09:22:21 +0100 (Fr, 20 Feb 2009) | 1 line
At least separate imports from other statements.
........
r69805 | georg.brandl | 2009-02-20 09:45:47 +0100 (Fr, 20 Feb 2009) | 2 lines
Fix punctuation.
........
r69840 | georg.brandl | 2009-02-21 20:09:40 +0100 (Sa, 21 Feb 2009) | 1 line
#5338, #5339: two types in the API manual.
........
r69896 | georg.brandl | 2009-02-23 11:24:23 +0100 (Mo, 23 Feb 2009) | 1 line
#5348: format() converts all kinds of values.
........
2009-02-23 06:41:11 -04:00
|
|
|
Gamma distribution. (*Not* the gamma function!) Conditions on the
|
|
|
|
parameters are ``alpha > 0`` and ``beta > 0``.
|
2007-08-15 11:28:01 -03:00
|
|
|
|
|
|
|
|
|
|
|
.. function:: gauss(mu, sigma)
|
|
|
|
|
Merged revisions 68582,68718,68720-68721,68724-68727,68859,68973,69288-69289,69293,69295,69297-69301,69409,69414,69570,69573,69576,69728-69730,69769,69776,69803-69805,69840,69896 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r68582 | georg.brandl | 2009-01-13 23:14:01 +0100 (Di, 13 Jan 2009) | 2 lines
Use assertRaises.
........
r68718 | georg.brandl | 2009-01-18 11:42:35 +0100 (So, 18 Jan 2009) | 1 line
#4976: union() and intersection() take multiple args, but talk about "the other".
........
r68720 | georg.brandl | 2009-01-18 11:45:22 +0100 (So, 18 Jan 2009) | 1 line
#4974: fix redundant mention of lists and tuples.
........
r68721 | georg.brandl | 2009-01-18 11:48:16 +0100 (So, 18 Jan 2009) | 1 line
#4914: trunc is in math.
........
r68724 | georg.brandl | 2009-01-18 14:24:10 +0100 (So, 18 Jan 2009) | 1 line
#4979: correct result range for some random functions.
........
r68725 | georg.brandl | 2009-01-18 14:47:26 +0100 (So, 18 Jan 2009) | 1 line
#4857: fix augmented assignment target spec.
........
r68726 | georg.brandl | 2009-01-18 15:41:52 +0100 (So, 18 Jan 2009) | 1 line
#4923: clarify what was added.
........
r68727 | georg.brandl | 2009-01-18 19:25:30 +0100 (So, 18 Jan 2009) | 1 line
#4986: augassigns are not expressions.
........
r68859 | georg.brandl | 2009-01-22 19:29:28 +0100 (Do, 22 Jan 2009) | 2 lines
Clarify wording.
........
r68973 | georg.brandl | 2009-01-26 22:29:38 +0100 (Mo, 26 Jan 2009) | 2 lines
Copy over docs on advanced role features from Sphinx docs.
........
r69288 | georg.brandl | 2009-02-05 11:30:57 +0100 (Do, 05 Feb 2009) | 1 line
#5153: fix typo in example.
........
r69289 | georg.brandl | 2009-02-05 11:37:07 +0100 (Do, 05 Feb 2009) | 1 line
#5144: document that PySys_SetArgv prepends the script directory (or the empty string) to sys.path.
........
r69293 | georg.brandl | 2009-02-05 11:59:28 +0100 (Do, 05 Feb 2009) | 1 line
#5059: fix example.
........
r69295 | georg.brandl | 2009-02-05 12:23:47 +0100 (Do, 05 Feb 2009) | 1 line
PyErr_PrintEx is also in 2.x...
........
r69297 | georg.brandl | 2009-02-05 12:32:18 +0100 (Do, 05 Feb 2009) | 1 line
#5015: document PythonHome API functions.
........
r69298 | georg.brandl | 2009-02-05 12:33:21 +0100 (Do, 05 Feb 2009) | 1 line
#4827: fix callback example.
........
r69299 | georg.brandl | 2009-02-05 12:35:28 +0100 (Do, 05 Feb 2009) | 1 line
#4820: use correct module for ctypes.util.
........
r69300 | georg.brandl | 2009-02-05 12:38:23 +0100 (Do, 05 Feb 2009) | 1 line
#4563: disable alpha and roman lists, fixes wrong formatting of contributor list.
........
r69301 | georg.brandl | 2009-02-05 12:40:35 +0100 (Do, 05 Feb 2009) | 1 line
#5031: fix Thread.daemon property docs.
........
r69409 | georg.brandl | 2009-02-07 13:21:17 +0100 (Sa, 07 Feb 2009) | 1 line
#5174: fix wrong file closing in example.
........
r69414 | georg.brandl | 2009-02-07 19:49:54 +0100 (Sa, 07 Feb 2009) | 1 line
make "super only for new-style classes" a note.
........
r69570 | georg.brandl | 2009-02-13 11:40:14 +0100 (Fr, 13 Feb 2009) | 1 line
#4894: document "newurl" parameter to redirect_request().
........
r69573 | georg.brandl | 2009-02-13 11:44:17 +0100 (Fr, 13 Feb 2009) | 1 line
#3734: document complex coercing behavior better.
........
r69576 | georg.brandl | 2009-02-13 11:56:50 +0100 (Fr, 13 Feb 2009) | 1 line
#1661108: note that urlsafe encoded string can contain "=".
........
r69728 | georg.brandl | 2009-02-18 01:22:55 +0100 (Mi, 18 Feb 2009) | 2 lines
#5297: fix example.
........
r69729 | georg.brandl | 2009-02-18 01:25:13 +0100 (Mi, 18 Feb 2009) | 2 lines
#5296: sequence -> iterable.
........
r69730 | georg.brandl | 2009-02-18 01:31:36 +0100 (Mi, 18 Feb 2009) | 2 lines
#5268: mention VMSError.
........
r69769 | georg.brandl | 2009-02-19 09:30:06 +0100 (Do, 19 Feb 2009) | 1 line
#5310, #3558: fix operator precedence table.
........
r69776 | georg.brandl | 2009-02-19 17:34:51 +0100 (Do, 19 Feb 2009) | 2 lines
#5317: update IronPython URL.
........
r69803 | georg.brandl | 2009-02-20 08:48:21 +0100 (Fr, 20 Feb 2009) | 1 line
#5327: fix a broken link by joining it.
........
r69804 | georg.brandl | 2009-02-20 09:22:21 +0100 (Fr, 20 Feb 2009) | 1 line
At least separate imports from other statements.
........
r69805 | georg.brandl | 2009-02-20 09:45:47 +0100 (Fr, 20 Feb 2009) | 2 lines
Fix punctuation.
........
r69840 | georg.brandl | 2009-02-21 20:09:40 +0100 (Sa, 21 Feb 2009) | 1 line
#5338, #5339: two types in the API manual.
........
r69896 | georg.brandl | 2009-02-23 11:24:23 +0100 (Mo, 23 Feb 2009) | 1 line
#5348: format() converts all kinds of values.
........
2009-02-23 06:41:11 -04:00
|
|
|
Gaussian distribution. *mu* is the mean, and *sigma* is the standard
|
|
|
|
deviation. This is slightly faster than the :func:`normalvariate` function
|
|
|
|
defined below.
|
2007-08-15 11:28:01 -03:00
|
|
|
|
|
|
|
|
|
|
|
.. function:: lognormvariate(mu, sigma)
|
|
|
|
|
|
|
|
Log normal distribution. If you take the natural logarithm of this
|
|
|
|
distribution, you'll get a normal distribution with mean *mu* and standard
|
|
|
|
deviation *sigma*. *mu* can have any value, and *sigma* must be greater than
|
|
|
|
zero.
|
|
|
|
|
|
|
|
|
|
|
|
.. function:: normalvariate(mu, sigma)
|
|
|
|
|
|
|
|
Normal distribution. *mu* is the mean, and *sigma* is the standard deviation.
|
|
|
|
|
|
|
|
|
|
|
|
.. function:: vonmisesvariate(mu, kappa)
|
|
|
|
|
|
|
|
*mu* is the mean angle, expressed in radians between 0 and 2\*\ *pi*, and *kappa*
|
|
|
|
is the concentration parameter, which must be greater than or equal to zero. If
|
|
|
|
*kappa* is equal to zero, this distribution reduces to a uniform random angle
|
|
|
|
over the range 0 to 2\*\ *pi*.
|
|
|
|
|
|
|
|
|
|
|
|
.. function:: paretovariate(alpha)
|
|
|
|
|
|
|
|
Pareto distribution. *alpha* is the shape parameter.
|
|
|
|
|
|
|
|
|
|
|
|
.. function:: weibullvariate(alpha, beta)
|
|
|
|
|
|
|
|
Weibull distribution. *alpha* is the scale parameter and *beta* is the shape
|
|
|
|
parameter.
|
|
|
|
|
|
|
|
|
|
|
|
Alternative Generators:
|
|
|
|
|
|
|
|
.. class:: WichmannHill([seed])
|
|
|
|
|
|
|
|
Class that implements the Wichmann-Hill algorithm as the core generator. Has all
|
|
|
|
of the same methods as :class:`Random` plus the :meth:`whseed` method described
|
|
|
|
below. Because this class is implemented in pure Python, it is not threadsafe
|
|
|
|
and may require locks between calls. The period of the generator is
|
|
|
|
6,953,607,871,644 which is small enough to require care that two independent
|
|
|
|
random sequences do not overlap.
|
|
|
|
|
|
|
|
|
|
|
|
.. function:: whseed([x])
|
|
|
|
|
|
|
|
This is obsolete, supplied for bit-level compatibility with versions of Python
|
|
|
|
prior to 2.1. See :func:`seed` for details. :func:`whseed` does not guarantee
|
|
|
|
that distinct integer arguments yield distinct internal states, and can yield no
|
|
|
|
more than about 2\*\*24 distinct internal states in all.
|
|
|
|
|
|
|
|
|
|
|
|
.. class:: SystemRandom([seed])
|
|
|
|
|
|
|
|
Class that uses the :func:`os.urandom` function for generating random numbers
|
|
|
|
from sources provided by the operating system. Not available on all systems.
|
|
|
|
Does not rely on software state and sequences are not reproducible. Accordingly,
|
|
|
|
the :meth:`seed` and :meth:`jumpahead` methods have no effect and are ignored.
|
|
|
|
The :meth:`getstate` and :meth:`setstate` methods raise
|
|
|
|
:exc:`NotImplementedError` if called.
|
|
|
|
|
|
|
|
.. versionadded:: 2.4
|
|
|
|
|
|
|
|
Examples of basic usage::
|
|
|
|
|
|
|
|
>>> random.random() # Random float x, 0.0 <= x < 1.0
|
|
|
|
0.37444887175646646
|
|
|
|
>>> random.uniform(1, 10) # Random float x, 1.0 <= x < 10.0
|
|
|
|
1.1800146073117523
|
|
|
|
>>> random.randint(1, 10) # Integer from 1 to 10, endpoints included
|
|
|
|
7
|
|
|
|
>>> random.randrange(0, 101, 2) # Even integer from 0 to 100
|
|
|
|
26
|
|
|
|
>>> random.choice('abcdefghij') # Choose a random element
|
|
|
|
'c'
|
|
|
|
|
|
|
|
>>> items = [1, 2, 3, 4, 5, 6, 7]
|
|
|
|
>>> random.shuffle(items)
|
|
|
|
>>> items
|
|
|
|
[7, 3, 2, 5, 6, 4, 1]
|
|
|
|
|
|
|
|
>>> random.sample([1, 2, 3, 4, 5], 3) # Choose 3 elements
|
|
|
|
[4, 1, 5]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.. seealso::
|
|
|
|
|
|
|
|
M. Matsumoto and T. Nishimura, "Mersenne Twister: A 623-dimensionally
|
|
|
|
equidistributed uniform pseudorandom number generator", ACM Transactions on
|
|
|
|
Modeling and Computer Simulation Vol. 8, No. 1, January pp.3-30 1998.
|
|
|
|
|
|
|
|
Wichmann, B. A. & Hill, I. D., "Algorithm AS 183: An efficient and portable
|
|
|
|
pseudo-random number generator", Applied Statistics 31 (1982) 188-190.
|
|
|
|
|
2009-04-01 17:52:52 -03:00
|
|
|
`Complementary-Multiply-with-Carry recipe
|
2009-04-03 02:41:10 -03:00
|
|
|
<http://code.activestate.com/recipes/576707/>`_ for a compatible alternative
|
|
|
|
random number generator with a long period and comparatively simple update
|
2009-04-01 17:52:52 -03:00
|
|
|
operations.
|