
math — Mathematical functions — Python 3.13.3 documentation
1 day ago · This module provides access to the mathematical functions defined by the C standard. These functions cannot be used with complex numbers; use the functions of the …
Numeric and Mathematical Modules — Python 3.13.3 …
1 day ago · The modules described in this chapter provide numeric and math-related functions and data types. The numbers module defines an abstract hierarchy of numeric types. The …
Built-in Functions — Python 3.13.3 documentation
1 day ago · Built-in Functions¶ The Python interpreter has a number of functions and types built into it that are always available. They are listed here in alphabetical order.
cmath — Mathematical functions for complex numbers - Python
3 days ago · This module provides access to mathematical functions for complex numbers. The functions in this module accept integers, floating-point numbers or complex numbers as …
The Python Standard Library — Python 3.13.3 documentation
1 day ago · The library contains built-in modules (written in C) that provide access to system functionality such as file I/O that would otherwise be inaccessible to Python programmers, as …
10. Brief Tour of the Standard Library — Python 3.13.3 …
The math module gives access to the underlying C library functions for floating-point math: >>>
statistics — Mathematical statistics functions — Python 3.13.3 ...
3 days ago · This module provides functions for calculating mathematical statistics of numeric (Real-valued) data. The module is not intended to be a competitor to third-party libraries such …
random — Generate pseudo-random numbers — Python 3.13.3 …
2 days ago · Almost all module functions depend on the basic function random(), which generates a random float uniformly in the half-open range 0.0 <= X < 1.0. Python uses the Mersenne …
distutils — Building and installing Python modules — Python …
Mar 9, 2022 · The distutils package provides support for building and installing additional modules into a Python installation. The new modules may be either 100%-pure Python, or may be …