blob: 2493e32bcf631a0234e4a68d67c120e2e50c53ab [file] [log] [blame]
Guido van Rossumecde7811995-03-28 13:35:14 +00001\chapter{Miscellaneous Services}
2
3The modules described in this chapter provide miscellaneous services
4that are available in all Python versions. Here's an overview:
5
6\begin{description}
7
8\item[math]
9--- Mathematical functions (\code{sin()} etc.).
10
Guido van Rossum8b0927e1998-02-11 22:33:57 +000011\item[cmath]
12--- Mathematical functions for complex numbers.
13
Guido van Rossumecde7811995-03-28 13:35:14 +000014\item[whrandom]
Guido van Rossum571391b1997-04-03 22:41:49 +000015--- Floating point pseudo-random number generator.
16
17\item[random]
18--- Generate pseudo-random numbers with various common distributions.
19
20\item[rand]
21--- Integer pseudo-random number generator (obsolete).
Guido van Rossumecde7811995-03-28 13:35:14 +000022
23\item[array]
24--- Efficient arrays of uniformly typed numeric values.
25
26\end{description}