/Doc/library/numeric.rst

http://unladen-swallow.googlecode.com/ · ReStructuredText · 28 lines · 21 code · 7 blank · 0 comment · 0 complexity · b324bf079a97a589b26bfbb29f8540ef MD5 · raw file

  1. .. _numeric:
  2. ********************************
  3. Numeric and Mathematical Modules
  4. ********************************
  5. The modules described in this chapter provide numeric and math-related functions
  6. and data types. The :mod:`numbers` module defines an abstract hierarchy of
  7. numeric types. The :mod:`math` and :mod:`cmath` modules contain various
  8. mathematical functions for floating-point and complex numbers. For users more
  9. interested in decimal accuracy than in speed, the :mod:`decimal` module supports
  10. exact representations of decimal numbers.
  11. The following modules are documented in this chapter:
  12. .. toctree::
  13. numbers.rst
  14. math.rst
  15. cmath.rst
  16. decimal.rst
  17. fractions.rst
  18. random.rst
  19. itertools.rst
  20. functools.rst
  21. operator.rst