Staging
v0.5.1
https://github.com/python/cpython
Revision 0c5e3c8d6a4a37a93c0c3f1543cc0699358301ff authored by Guido van Rossum on 31 July 1996, 17:49:01 UTC, committed by Guido van Rossum on 31 July 1996, 17:49:01 UTC
1 parent 276de58
Raw File
Tip revision: 0c5e3c8d6a4a37a93c0c3f1543cc0699358301ff authored by Guido van Rossum on 31 July 1996, 17:49:01 UTC
DESTLIB and MACHDESTLIB are now derived from variables set by the Makefile.
Tip revision: 0c5e3c8
librand.tex
\section{Standard Module \sectcode{rand}}

\stmodindex{rand} This module implements a pseudo-random number
generator with an interface similar to \code{rand()} in C\@.  It defines
the following functions:

\renewcommand{\indexsubitem}{(in module rand)}
\begin{funcdesc}{rand}{}
Returns an integer random number in the range [0 ... 32768).
\end{funcdesc}

\begin{funcdesc}{choice}{s}
Returns a random element from the sequence (string, tuple or list)
\var{s}.
\end{funcdesc}

\begin{funcdesc}{srand}{seed}
Initializes the random number generator with the given integral seed.
When the module is first imported, the random number is initialized with
the current time.
\end{funcdesc}
back to top