About 600 results
Open links in new tab
  1. math — Mathematical functions — Python 3.14.0 documentation

    5 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 …

  2. Numeric and Mathematical Modules — Python 3.14.0 …

    4 days 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.

  3. random — Generate pseudo-random numbers — Python 3.14.0 …

    5 days ago · The functions supplied by this module are actually bound methods of a hidden instance of the random.Random class. You can instantiate your own instances of Random to …

  4. statistics — Mathematical statistics functions — Python 3.14.0 ...

    2 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 …

  5. 6. Modules — Python 3.14.0 documentation

    6 days ago · Such a file is called a module; definitions from a module can be imported into other modules or into the main module (the collection of variables that you have access to in a script …

  6. cmath — Mathematical functions for complex numbers - Python

    4 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 …

  7. The Python Standard Library — Python 3.14.0 documentation

    4 days 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 …

  8. operator — Standard operators as functions — Python 3.14.0 …

    4 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.

  9. datetime — Basic date and time types — Python 3.14.0 …

    The datetime module supplies classes for manipulating dates and times. While date and time arithmetic is supported, the focus of the implementation is on efficient attribute extraction for …

  10. Built-in Functions — Python 3.14.0 documentation

    5 days ago · If the object is a module object, the list contains the names of the module’s attributes. If the object is a type or class object, the list contains the names of its attributes, and …