0
0
mirror of https://github.com/python/cpython.git synced 2024-11-28 16:45:42 +01:00
cpython/Doc/lib/librand.tex

32 lines
922 B
TeX
Raw Normal View History

\section{\module{rand} ---
None}
\declaremodule{standard}{rand}
\modulesynopsis{None}
1994-01-02 02:22:07 +01:00
1997-04-04 00:41:49 +02:00
The \code{rand} module simulates the C library's \code{rand()}
interface, though the results aren't necessarily compatible with any
given library's implementation. While still supported for
compatibility, the \code{rand} module is now considered obsolete; if
possible, use the \code{whrandom} module instead.
1994-01-02 02:22:07 +01:00
1997-04-04 00:41:49 +02:00
\begin{funcdesc}{choice}{seq}
Returns a random element from the sequence \var{seq}.
1994-01-02 02:22:07 +01:00
\end{funcdesc}
1997-04-04 00:41:49 +02:00
\begin{funcdesc}{rand}{}
Return a random integer between 0 and 32767, inclusive.
1994-01-02 02:22:07 +01:00
\end{funcdesc}
\begin{funcdesc}{srand}{seed}
1997-04-04 00:41:49 +02:00
Set a starting seed value for the random number generator; \var{seed}
can be an arbitrary integer.
1994-01-02 02:22:07 +01:00
\end{funcdesc}
1997-04-04 00:41:49 +02:00
\begin{seealso}
\seemodule{random}{Python's interface to random number generators.}
\seemodule{whrandom}{The random number generator used by default.}
\end{seealso}