| 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 | 
| Jeffrey Yasskin | 2f3c16b | 2008-01-03 02:21:52 +0000 | [diff] [blame] | 9 | and data types. The :mod:`numbers` module defines an abstract hierarchy of | 
 | 10 | numeric types. The :mod:`math` and :mod:`cmath` modules contain various | 
 | 11 | mathematical functions for floating-point and complex numbers. For users more | 
 | 12 | interested in decimal accuracy than in speed, the :mod:`decimal` module supports | 
 | 13 | exact representations of decimal numbers. | 
| Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 14 |  | 
 | 15 | The following modules are documented in this chapter: | 
 | 16 |  | 
 | 17 |  | 
 | 18 | .. toctree:: | 
 | 19 |  | 
| Jeffrey Yasskin | 2f3c16b | 2008-01-03 02:21:52 +0000 | [diff] [blame] | 20 |    numbers.rst | 
| Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 21 |    math.rst | 
 | 22 |    cmath.rst | 
 | 23 |    decimal.rst | 
| Raymond Hettinger | 596fdd0 | 2008-02-12 00:15:32 +0000 | [diff] [blame] | 24 |    fractions.rst | 
| Georg Brandl | 8ec7f65 | 2007-08-15 14:28:01 +0000 | [diff] [blame] | 25 |    random.rst | 
 | 26 |    itertools.rst | 
 | 27 |    functools.rst | 
 | 28 |    operator.rst |