1998-08-10 16:42:37 -03:00
|
|
|
\section{\module{rand} ---
|
|
|
|
None}
|
1998-07-23 14:59:49 -03:00
|
|
|
\declaremodule{standard}{rand}
|
|
|
|
|
|
|
|
\modulesynopsis{None}
|
|
|
|
|
1994-01-01 21:22:07 -04:00
|
|
|
|
1997-04-03 18:41:49 -04: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-01 21:22:07 -04:00
|
|
|
|
1997-11-30 01:23:47 -04:00
|
|
|
|
1997-04-03 18:41:49 -04:00
|
|
|
\begin{funcdesc}{choice}{seq}
|
|
|
|
Returns a random element from the sequence \var{seq}.
|
1994-01-01 21:22:07 -04:00
|
|
|
\end{funcdesc}
|
|
|
|
|
1997-04-03 18:41:49 -04:00
|
|
|
\begin{funcdesc}{rand}{}
|
|
|
|
Return a random integer between 0 and 32767, inclusive.
|
1994-01-01 21:22:07 -04:00
|
|
|
\end{funcdesc}
|
|
|
|
|
|
|
|
\begin{funcdesc}{srand}{seed}
|
1997-04-03 18:41:49 -04:00
|
|
|
Set a starting seed value for the random number generator; \var{seed}
|
|
|
|
can be an arbitrary integer.
|
1994-01-01 21:22:07 -04:00
|
|
|
\end{funcdesc}
|
1997-04-03 18:41:49 -04:00
|
|
|
|
1997-07-17 13:34:52 -03:00
|
|
|
\begin{seealso}
|
2000-10-18 14:43:06 -03:00
|
|
|
\seemodule{random}{Python's interface to random number generators.}
|
|
|
|
\seemodule{whrandom}{The random number generator used by default.}
|
1997-07-17 13:34:52 -03:00
|
|
|
\end{seealso}
|