Guido van Rossum | ecde781 | 1995-03-28 13:35:14 +0000 | [diff] [blame] | 1 | \chapter{Miscellaneous Services} |
| 2 | |
| 3 | The modules described in this chapter provide miscellaneous services |
| 4 | that 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 | |
| 11 | \item[rand] |
| 12 | --- Integer random number generator. |
| 13 | |
| 14 | \item[whrandom] |
| 15 | --- Floating point random number generator. |
| 16 | |
| 17 | \item[array] |
| 18 | --- Efficient arrays of uniformly typed numeric values. |
| 19 | |
| 20 | \end{description} |