Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame^] | 1 | |
| 2 | .. _numeric: |
| 3 | |
| 4 | ******************************** |
| 5 | Numeric and Mathematical Modules |
| 6 | ******************************** |
| 7 | |
| 8 | The modules described in this chapter provide numeric and math-related functions |
| 9 | and data types. The :mod:`math` and :mod:`cmath` contain various mathematical |
| 10 | functions for floating-point and complex numbers. For users more interested in |
| 11 | decimal accuracy than in speed, the :mod:`decimal` module supports exact |
| 12 | representations of decimal numbers. |
| 13 | |
| 14 | The following modules are documented in this chapter: |
| 15 | |
| 16 | |
| 17 | .. toctree:: |
| 18 | |
| 19 | math.rst |
| 20 | cmath.rst |
| 21 | decimal.rst |
| 22 | random.rst |
| 23 | itertools.rst |
| 24 | functools.rst |
| 25 | operator.rst |