About 50 results
Open links in new tab
  1. math — Mathematical functions — Python 3.14.3 documentation

    2 days ago · This module provides access to common mathematical functions and constants, including those defined by the C standard. These functions cannot be used with complex numbers; use the …

  2. Numeric and Mathematical Modules — Python 3.14.3 documentation

    3 days ago · The math and cmath modules contain various mathematical functions for floating-point and complex numbers. The decimal module supports exact representations of decimal numbers, using …

  3. The Python Standard Library — Python 3.14.3 documentation

    2 days ago · While The Python Language Reference describes the exact syntax and semantics of the Python language, this library reference manual describes the standard library that is distributed with …

  4. cmath — Mathematical functions for complex numbers - Python

    2 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 arguments.

  5. Built-in Functions — Python 3.14.3 documentation

    2 days ago · fget is a function for getting an attribute value. fset is a function for setting an attribute value. fdel is a function for deleting an attribute value. And doc creates a docstring for the attribute.

  6. statistics — Mathematical statistics functions — Python 3.14.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 as NumPy, …

  7. math.integer — integer-specific mathematics functions — Python …

    This module provides access to the mathematical functions defined for integer arguments. These functions accept integers and objects that implement the __index__() method which is used to …

  8. random — Generate pseudo-random numbers — Python 3.14.3 …

    1 day 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 Twister as …

  9. Python Module Index — Python 3.14.3 documentation

    2 days ago · Python Module Index _ | a | b | c | d | e | f | g | h | i | j | k | l | m | n | o | p | q | r | s | t | u | v | w | x | z

  10. operator — Standard operators as functions — Python 3.14.3 …

    2 days ago · The operator module exports a set of efficient functions corresponding to the intrinsic operators of Python. For example, operator.add(x, y) is equivalent to the expression x+y.