cpython/Doc/librand.tex

22 lines
681 B
TeX
Raw Normal View History

1994-01-01 21:22:07 -04:00
\section{Standard Module \sectcode{rand}}
\stmodindex{rand} This module implements a pseudo-random number
1995-03-13 06:03:32 -04:00
generator with an interface similar to \code{rand()} in C\@. It defines
1994-01-01 21:22:07 -04:00
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}