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 | |
Guido van Rossum | ecde781 | 1995-03-28 13:35:14 +0000 | [diff] [blame] | 11 | \item[whrandom] |
Guido van Rossum | 571391b | 1997-04-03 22:41:49 +0000 | [diff] [blame] | 12 | --- Floating point pseudo-random number generator. |
| 13 | |
| 14 | \item[random] |
| 15 | --- Generate pseudo-random numbers with various common distributions. |
| 16 | |
| 17 | \item[rand] |
| 18 | --- Integer pseudo-random number generator (obsolete). |
Guido van Rossum | ecde781 | 1995-03-28 13:35:14 +0000 | [diff] [blame] | 19 | |
| 20 | \item[array] |
| 21 | --- Efficient arrays of uniformly typed numeric values. |
| 22 | |
| 23 | \end{description} |