
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 …
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 …
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.
statistics — Mathematical statistics functions — Python 3.14.3 ...
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 as NumPy, …
random — Generate pseudo-random numbers — Python 3.14.3 …
3 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 get generators that …
10. Brief Tour of the Standard Library — Python 3.14.3 documentation
Nov 11, 2025 · The datetime module supplies classes for manipulating dates and times in both simple and complex ways. While date and time arithmetic is supported, the focus of the implementation is …
numbers — Numeric abstract base classes — Python 3.14.3 …
3 days ago · The numbers module (PEP 3141) defines a hierarchy of numeric abstract base classes which progressively define more operations. None of the types defined in this module are intended to …
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
The Python Standard Library — Python 3.14.3 documentation
1 day ago · numbers — Numeric abstract base classes math — Mathematical functions cmath — Mathematical functions for complex numbers decimal — Decimal fixed-point and floating-point …
What’s New In Python 3.13 — Python 3.14.2 documentation
Jan 17, 2026 · The subprocess module now uses the posix_spawn() function in more situations, including when close_fds is True (the default) on many modern platforms. This should provide a …